Skip to main content

It generates the Report of the dataset

Project description

ShortReport

This library is used to generate a report. Features in this library are:

  • Numbers and Types: Shows the number of columns and rows present in the dataset. Also describe the type of columns.
  • Essentials: Unique values in a column and Numbers of missing values
  • Descriptive statistics: Mean and Standard Deviation.
  • Graphs: Short Report includes different plotly graphs for better visualization like Histograms for data distribution of each column, Scatter Plot for finding the relationships or pattern between the attributes or columns, Heat Map for finding the correlation with target variable and Boxplot for outlier detection.
  • Data Summary: includes Numbers of zeros and percentage, Maximum and Minimum value.

Advantages:

  • User Friendly: This Library helps user to understand the nature of data easily in very efficient way.
  • Graphs: All graphs are made from plotly so user can interact with the graph values.
  • Fast: Generates report in milliseconds.
  • Info: Gives the basic info which are required to clean the dataset and performing predictions.

Quickstart

Import ShortReport and create a Dataframe

from ShortReport import Report as r
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.rand(100,4), columns = ['X','Y','Z','A'])

Call the method shortreport and it requires one argument which should be a Dataframe

r.shortreport(df)

Output on Jupyter Notebook

Dataset_report:

HTML

Correlation:

Correlation

Installation

Using pip

pip install ShortReport

Using conda

conda install ShortReport

License

This program is free (as in speech) software under the GPLv3. Please see the license file for more.

Change Log

0.0.1 (02/07/2022)

  • First Release

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

ShortReport-0.0.3.tar.gz (5.1 kB view hashes)

Uploaded Source

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