Pandas-Udemy-Scripts

Scripts used in Pandas Udemy Course

Topics:

  • What is a dataframe?

Ways to Create Series

  • Lists
  • Dictionaries
  • NumPy Arrays
#### Series Attributes
  • .values(), .index(), .dtype()
  • .size(), .name(), .is_unique()
### Selecting Values from Series
  • Square bracket selection
  • get()
#### Series Methods
  • .sum(), .product(), .mean()
#### Python Built in Functions
  • len(), type(), sorted(), max(), min()
  • in keyword
#### Series In Place
  • inplace parameter