LoslegenKostenlos loslegen

K-anonymizing a dataset

In this exercise, you will anonymize the NBA Salaries dataset. Remember, you need to specify attribute types to apply k-anonymity. These can be identifying, quasi-identifying, sensitive, or insensitive. We'll focus on age and nba_origin to be Quasi-identifying and salary as sensitive data.

Explore nba. If you know information about a player, like that he/she's from Spain and is 23, then you will know sensitive information like his/her salary! Here, we'll use a K-value of 3, ensuring that the chosen attributes cannot be distinguished with at least k-1 other rows.

The hierarchy dictionary for nba_Origin is already created as origin_hierarchy.

Diese Übung ist Teil des Kurses

Data Privacy and Anonymization in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Print how many unique combinations are for age and nba_origin
print(____)
Code bearbeiten und ausführen