Created
May 28, 2016 21:50
-
-
Save cpard/ff9600c2d9f943d1f2e763310c57783d to your computer and use it in GitHub Desktop.
Basic Cleaning of our data
This file contains 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
fNames['name'] = fNames.name.str.lower() | |
mNames['name'] = mNames.name.str.lower() | |
joinedEventsFrame['first_name'] = joinedEventsFrame['first_name'].replace(to_replace='', value = np.nan) | |
joinedEventsFrame = joinedEventsFrame.dropna() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment