Created
April 1, 2019 05:06
-
-
Save ronakmutha/5f2f20c6b716982f3724cebe49719150 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
>>> 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