Posts

Sweetviz: EDA (Exploratory Data Analysis) in two lines of code in Python

Image
  Sweetviz: Powerful Automated EDA in Python  Overview of Sweetviz S weetviz is an open-source Python library used to perform quick EDA (Exploratory Data Analysis). The library offers beautiful, high-density visualizations for EDA with only a few lines of code. The output file generated will be a 1080p widescreen fully self-contained HTML application opens in your default web browser. The latest version of Sweetviz is 2.1.0 released on April 1, 2021. Sweetviz not only helps in quick visu a lization of target variables but also offers the comparison of Train and Test data in various aspects. It also offers the functionality to compare two subsets of the same data set with its compare_intra() function. For example feature with multiple categories. example Region with values as America, Europe, Nordic, Middle East, Africa, and Asia. We can compare America with others(Europe, Nordic, Middle East, Africa, and Asia) using compare_intra(…). Sweetviz has three main functi...

Exploratory Data Analysis

  Overview of Exploratory Data Analysis Exploratory data analysis (EDA) is the first and most important step performed in any data science and machine learning project. Exploratory data analysis (EDA) helps data analyst and data scientists to analyze and investigate data sets. Exploratory Data Analysis helps to summarize main characteristics of data sets and insights from data. EDA also involves data visualization methods to better showcase the properties. In other words, EDA helps us simply understanding the data sets with the help of summary and often using graphical techniques such as various plots which include Histogram, Bar Chart, Box Plot, Scatter Plots and many more. The main objective of EDA is to help look at data in a systematical manner before making any assumptions. It can help identify features, errors in data set, detect outliers or anomalous, and helps in generating a better understanding of data and relationships between different variables. Some times the Ex...