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
.
Este ejercicio forma parte del curso
Data Privacy and Anonymization in Python
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Print how many unique combinations are for age and nba_origin
print(____)