Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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")
Comment

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.
Comment

How to install pandas-profiling


python3 -m pip install pandas-profiling

Comment

PREVIOUS NEXT
Code Example
Python :: python create folder 
Python :: assign multiline string to variable in python 
Python :: python plotting moving average 
Python :: Python all versions lookup 
Python :: sum of 2 numbers in python 
Python :: find size of mongodb collection python 
Python :: how to clear a list in python 
Python :: how to get month name from date in pandas 
Python :: python string slicing 
Python :: list the available fonts matplotlib 
Python :: python pdf fpdf example 
Python :: python string indexof 
Python :: openpyxl fast tutorial 
Python :: string formatting in python 
Python :: python remove everything after character 
Python :: multiple pdf to csv python 
Python :: getting started with machine learning 
Python :: Using Python Permutations function on a String 
Python :: ordereddict 
Python :: remove nans and infs python 
Python :: print typeof in python 
Python :: python count code, Count number of occurrences of a given substring 
Python :: list all files starting with python 
Python :: numpy logspace 
Python :: python sort list 
Python :: get number of zero is a row pandas 
Python :: non-default argument follows default argument 
Python :: only keep rows of a dataframe based on a column value 
Python :: append dataframe pandas 
Python :: python add one 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =