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
.
Cet exercice fait partie du cours
Data Privacy and Anonymization in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Print how many unique combinations are for age and nba_origin
print(____)