Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 09:48
Show Gist options
  • Save velotiotech/6f6127645c34ffcea01788562e603df3 to your computer and use it in GitHub Desktop.
Save velotiotech/6f6127645c34ffcea01788562e603df3 to your computer and use it in GitHub Desktop.
>>> import pandas as pd
>>> import numpy as np
>>> series = pd.Series([12,32,54,2, np.nan, "a string", 6])
>>> series
0 12
1 32
2 54
3 2
4 NaN
5 a string
6 6
dtype: object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment