Skip to content

Instantly share code, notes, and snippets.

@ronakmutha
Created April 1, 2019 05:06
Show Gist options
  • Save ronakmutha/5f2f20c6b716982f3724cebe49719150 to your computer and use it in GitHub Desktop.
Save ronakmutha/5f2f20c6b716982f3724cebe49719150 to your computer and use it in GitHub Desktop.
>>> series = pd.Series([1,2,np.nan, 4])
>>> series
0 1.0
1 2.0
2 NaN
3 4.0
dtype: float64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment