Lesson 3: DataFrameSummary

Screenshot-2018-2-22%20Test-lesson3-rossman
From the lesson 3 rossmann notebook

Is this DataFrameSumary function defined in the fast ai library?

I am trying to use the code, without the fast ai library to create dataframes of my csv files and learn pandas etc

Should I be able to use something like tables.describe() to get a similar summary? Doesn’t seem to work.

1 Like

found this…trying it out
https://pypi.python.org/pypi/pandas-summary/0.0.41

Got it to work!
at the terminal did:
pip install pandas-summary

and in the jupyter notebook had to do:
from pandas_summary import DataFrameSummary

1 Like

Finding the Python for Data Analysis book that jeremy shows in the video extremely helpful.