Horje
pandas profiling Code Example
how to do pandas profiling
//get the latest version of pandas_profiling
import numpy as np
import pandas as pd
import pandas_profiling

df1=pd.read_csv(<File path>)

profile = df1.profile_report(title="<give any name you want>")
profile.to_file(output_file="<givefilename>.html")
pandas profiling
!pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip
  
from pandas_profiling import ProfileReport

profile = ProfileReport(df, title='Pandas Profiling Report', explorative=True)
profile.to_widgets()
how to install pandas profiling
# You can download pandas-profiling by installing the version that runs on your computer for me this worked:
pip install pandas-profiling==1.1.0 # Paste this in the terminal
# Now type pip install pandas-profiling in your terminal it will say, Requirment already satisfied.
pandas profiling
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
profile = ProfileReport(train, title="Pandas Profiling Report")
profile.to_widgets()
profile.to_file("your_report.html")
pandas profiling
profile = df.profile_report(title=’Pandas Profiling Report’)profile.to_file(output_file=”Pandas Profiling Report — AirBNB .html”)
Source: medium.com




Python

Related
how to read excel file in jupyter notebook Code Example how to read excel file in jupyter notebook Code Example
read json file python utf8 Code Example read json file python utf8 Code Example
NAN values count python Code Example NAN values count python Code Example
Python can't subtract offset-naive and offset-aware datetimes Code Example Python can't subtract offset-naive and offset-aware datetimes Code Example
pandas read tab separated file Code Example pandas read tab separated file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7