Scientifics Computing Libraries in Python
Visualization Libraries
Algorithmic Libraries
Printing the dataframe
dfprints the entire dataframe(not recommended for large datasets)df.head(n)to show the firstnrows of data framedf.tail(n)to show the bottomnrows of data frame
adding headers
- headers = ["header1","header2","header3"]
- Replace default header by
df.colums=headers
read or save file
- (this course only read and save .csv file
- read
pd.read_csv()and savedf.to_csv()`