EDA Flashcards

1
Q

YData Profiling

A

!pip install ydata-profiling
from ydata_profiling import ProfileReport
#Generate the data profile report
profile = ProfileReport(train,title=’EDA’)
#show the report on the notebook
profile.to_notebook_iframe()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

AutoViz

A

Instantiate AutoViz_Class

!pip install autoviz

from autoviz.AutoViz_Class import AutoViz_Class

AV = AutoViz_Class()

df = AV.AutoViz(filename=’’,
dfte=train,
verbose=1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Sweetviz

A

Generate a comparison report

!pip install sweetviz

import sweetviz as sv

compare = sv.compare(source=[train,’Training’],
compare=[test,’Test’],
target_feat=”SalePrice”)

compare.show_notebook(w=None,
h=None,
scale=None,
layout=’widescreen’,
filepath=None)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly