Export Data
General Info
Useful Snippets

3.0.0 Export to csv

Example:

##### Export to csv file (.csv)
DF.to_csv("/Path/to/your/data.csv")

##### remove the index numbers when you export to .csv file with index = False
DF.to_csv("/Path/to/your/data.csv", index = False)