Exploratory Data Analysis (EDA) Using Python | Python Data Analysis |

Published: 01 January 1970
on channel: Sharma ji ka Gyan & Tricks
152
7

Exploratory Data Analysis (EDA)

Analyzing data to find patterns that can be used to verify hypotheses, detect anomalies and complete other actions.

***********************************
!pip install sweetviz
!pip install autoviz
!pip install fasteda
!pip install datacleaner

import pandas as pd
from datacleaner import autoclean

df=pd.read_csv("Clean_Dataset1.csv")
df=autoclean(df)

from fasteda import fast_eda
fast_eda(df)

import sweetviz as sv
report=sv.analyze(df)
report.show_html("output.html")

from autoviz.AutoViz_Class import AutoViz_Class
av=AutoViz_Class()
report=av.AutoViz("Clean_Dataset1.csv")

‪@SharmajikaGyanTricks‬


On this page of the site you can watch the video online Exploratory Data Analysis (EDA) Using Python | Python Data Analysis | with a duration of hours minute second in good quality, which was uploaded by the user Sharma ji ka Gyan & Tricks 01 January 1970, share the link with friends and acquaintances, this video has already been watched 152 times on youtube and it was liked by 7 viewers. Enjoy your viewing!