Skip to content

Instantly share code, notes, and snippets.

@shantoroy
Created May 4, 2021 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shantoroy/f3464970c182687255d76a124ff27de0 to your computer and use it in GitHub Desktop.
Save shantoroy/f3464970c182687255d76a124ff27de0 to your computer and use it in GitHub Desktop.
# Helps Visualizing overall summary of all features in a dataset
# !pip install numpy
# !pip install pandas
# !pip install autoviz
# !pip install xlrd
# !pip install xgboost
from autoviz.AutoViz_Class import AutoViz_Class
AV = AutoViz_Class()
filename = "example_dataset.csv"
sep = ","
dft = AV.AutoViz(
filename,
sep=",",
depVar="",
dfte=None,
header=0,
verbose=0, # 2 to save images (not quite helpful though)
lowess=False,
chart_format="png",
max_rows_analyzed=150000,
max_cols_analyzed=30,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment