ComeçarComece de graça

Masking sensitive PII

You have been given a dataset containing Social Security numbers (SSN) of American citizens along with their city locations and age. If this was unreleased data only consented to be shared with us, when exposing it, a privacy breach would occur since you are disclosing data the subjects didn't expect us to share.

Your job will be to anonymize the data by applying partial masking to the Sensitive PII ssn. Remember, data masking is about hiding/obfuscating data to avoid data privacy breaches, while preserving the overall format and semantics.

The dataset has been loaded as insurance_df, but save the resulting data in masked_df to keep the original insurance_df intact.

Este exercício faz parte do curso

Data Privacy and Anonymization in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Uniformly mask the SSN numbers with *
____

# See resulting DataFrame
print(____)
Editar e executar o código