Guest User

Untitled

a guest
Feb 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # import pandas, pd is an alias
  2. import pandas as pd
  3.  
  4. # Creating a numeric pandas series
  5. s = pd.Series(2)
  6. print(s)
  7. print(type(s))
  8.  
  9. 0 2
  10. dtype: int64
  11. <class 'pandas.core.series.Series'>
Add Comment
Please, Sign In to add comment