May 30, 2020
Pandas: Excellent Python Module to see Statistics from a CSV File
Very simple usage:
import pandas as p
d = p.read_csv('/path/to/test.csv')
d.describe()
If needed, install pandas first: pip3 install pandas
Let's make the world a better place using digital technologies!
May 30, 2020
Very simple usage:
import pandas as p
d = p.read_csv('/path/to/test.csv')
d.describe()
If needed, install pandas first: pip3 install pandas