Skip to main content

Generate a quick EDA report of a pandas DataFrame

Project description

Easy Report

Generates EDA reports from a pandas DataFrame.

forthebadge

Python 3.6

Features of the package

The pandas df.describe() function is great but a little basic, for serious exploratory data analysis for any classification or regression problem EasyReport helps the user for quick data analysis.

For each column the following statistics (if relevant for the column type) are presented:

  • Type inference: detect the types of columns in a dataframe
  • Essentials: type, unique values, missing values, outliers
  • Quantile statistics: minimum value, Q1, median, Q3, maximum, interquartile range, upper, lower
  • Descriptive statistics: mean, variance, standard deviation, coefficient of variation, kurtosis, skewness
  • Graphs: Histogram, boxplot, countplot, pie, scatterplot
  • Correlations: correlation matrix, heatmap
  • Duplicates: total number of duplicate row and number of times they are repated
  • Missing value: number of missing values, dendrogram of missing values

Installation

You can install using the pip package manager by running

pip install EasyReport

Examples

For Classification Problem

import pandas as pd
from EasyReport.easy_report import EdaReport

#Read the dataset
df = pd.read_csv("Dataset")

report = EdaReport(data = df,target_column = 'target_column_name')
report.summary()

For Regression Problem

import pandas as pd
from EasyReport.easy_report import EdaReport

#Read the dataset
df = pd.read_csv("Dataset")

report = EdaReport(data = df,target_column = 'target_column_name',regression = True)
report.summary()

Author

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

EasyReport-0.0.7.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

EasyReport-0.0.7-py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page