Skip to content

Instantly share code, notes, and snippets.

@idling-mind
Last active July 15, 2020 23:05
Show Gist options
  • Save idling-mind/057efbb8433d886d9084bdb022f37b9d to your computer and use it in GitHub Desktop.
Save idling-mind/057efbb8433d886d9084bdb022f37b9d to your computer and use it in GitHub Desktop.
# Convert the creation time to a datetime dtype
photos.creationTime = pd.to_datetime(photos.creationTime)
# Convert other numeric data into numeric dtypes
for c in ['width', 'height', 'apertureFNumber', 'focalLength', 'isoEquivalent']:
photos[c] = pd.to_numeric(photos[c])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment