panda series function

Solutions on MaxInterview for panda series function by the best coders in the world

showing results for - "panda series function"
Tom
14 Jun 2018
1In [3]: s = pd.Series([1, 3, 5, np.nan, 6, 8])
2
3In [4]: s
4Out[4]: 
50    1.0
61    3.0
72    5.0
83    NaN
94    6.0
105    8.0
11dtype: float64
12