Created
August 8, 2018 08:18
-
-
Save FelixChop/42f065b0e74b688af0d5494c0311b662 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| df = pd.DataFrame({'ID':[1,2,3,4,5,6], | |
| 'First Name':['Felix', 'Jean', 'James', 'Daphne', 'James', 'Peter'], | |
| 'Family Name': ['Revert', 'Durand', 'Wright', 'Hull', 'Conrad', 'Donovan'], | |
| 'Phone number': ['+33 6 12 34 56 78', '+33 7 00 00 00 00', '+33 6 12 34 56 78', '+33 6 99 99 99 99', '+852 0123 4567', '+852 0123 4567'], | |
| 'Email': ['felix.revert@gmail.com', 'jean.durand@gmail.com', 'j.custom@gmail.com', pd.np.nan, 'j.custom@gmail.com', pd.np.nan]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment