Generate profile report for pandas DataFrame
Project description
Pandas Profiling
Documentation | Slack | Stack Overflow | Latest changelog
Generates profile reports from a pandas DataFrame
.
The pandas df.describe()
function is great but a little basic for serious exploratory data analysis.
pandas_profiling
extends the pandas DataFrame with df.profile_report()
for quick data analysis.
For each column the following statistics - if relevant for the column type - are presented in an interactive HTML report:
- Type inference: detect the types of columns in a dataframe.
- Essentials: type, unique values, missing values
- Quantile statistics like minimum value, Q1, median, Q3, maximum, range, interquartile range
- Descriptive statistics like mean, mode, standard deviation, sum, median absolute deviation, coefficient of variation, kurtosis, skewness
- Most frequent values
- Histogram
- Correlations highlighting of highly correlated variables, Spearman, Pearson and Kendall matrices
- Missing values matrix, count, heatmap and dendrogram of missing values
- Text analysis learn about categories (Uppercase, Space), scripts (Latin, Cyrillic) and blocks (ASCII) of text data.
- File and Image analysis extract file sizes, creation dates and dimensions and scan for truncated images or those containing EXIF information.
Announcements
Spark backend in progress: We can happily announce that we're nearing v1 for the Spark backend for generating profile reports. Beta testers wanted! The Spark backend will be released as a pre-release for this package.
Monitoring time series?: I'd like to draw your attention to popmon. Whereas pandas-profiling allows you to explore patterns in a single dataset, popmon allows you to uncover temporal patterns. It's worth checking out!
Contents: Examples | Installation | Documentation | Large datasets | Command line usage | Advanced usage | Support | Go beyond | Support the project | Types | How to contribute | Editor Integration | Dependencies
Examples
The following examples can give you an impression of what the package can do:
- Census Income (US Adult Census data relating income)
- NASA Meteorites (comprehensive set of meteorite landings)
- Titanic (the "Wonderwall" of datasets)
- NZA (open data from the Dutch Healthcare Authority)
- Stata Auto (1978 Automobile data)
- Vektis (Vektis Dutch Healthcare data)
- Colors (a simple colors dataset)
- UCI Bank Dataset (banking marketing dataset)
- RDW (RDW, the Dutch DMV's vehicle registration 10 million rows, 71 features)
Specific features:
- Russian Vocabulary (demonstrates text analysis)
- Cats and Dogs (demonstrates image analysis from the file system)
- Celebrity Faces (demonstrates image analysis with EXIF information)
- Website Inaccessibility (demonstrates URL analysis)
- Orange prices and Coal prices (showcases report themes)
Tutorials:
- Tutorial: report structure using Kaggle data (advanced) (modify the report's structure)
Installation
Using pip
You can install using the pip package manager by running
pip install pandas-profiling[notebook]
Alternatively, you could install the latest version directly from Github:
pip install https://github.com/ydataai/pandas-profiling/archive/master.zip
Using conda
You can install using the conda package manager by running
conda install -c conda-forge pandas-profiling
From source
Download the source code by cloning the repository or by pressing 'Download ZIP' on this page.
Install by navigating to the proper directory and running:
python setup.py install
Documentation
The documentation for pandas_profiling
can be found here. Previous documentation is still available here.
Getting started
Start by loading in your pandas DataFrame, e.g. by using:
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
df = pd.DataFrame(np.random.rand(100, 5), columns=["a", "b", "c", "d", "e"])
To generate the report, run:
profile = ProfileReport(df, title="Pandas Profiling Report")
Explore deeper
You can configure the profile report in any way you like. The example code below loads the explorative configuration, that includes many features for text (length distribution, unicode information), files (file size, creation time) and images (dimensions, exif information). If you are interested what exact settings were used, you can compare with the default configuration file.
profile = ProfileReport(df, title="Pandas Profiling Report", explorative=True)
Learn more about configuring pandas-profiling
on the Advanced usage page.
Jupyter Notebook
We recommend generating reports interactively by using the Jupyter notebook. There are two interfaces (see animations below): through widgets and through a HTML report.
This is achieved by simply displaying the report. In the Jupyter Notebook, run:
profile.to_widgets()
The HTML report can be included in a Jupyter notebook:
Run the following code:
profile.to_notebook_iframe()
Saving the report
If you want to generate a HTML report file, save the ProfileReport
to an object and use the to_file()
function:
profile.to_file("your_report.html")
Alternatively, you can obtain the data as JSON:
# As a string
json_data = profile.to_json()
# As a file
profile.to_file("your_report.json")
Large datasets
Version 2.4 introduces minimal mode.
This is a default configuration that disables expensive computations (such as correlations and duplicate row detection).
Use the following syntax:
profile = ProfileReport(large_dataset, minimal=True)
profile.to_file("output.html")
Benchmarks are available here.
Command line usage
For standard formatted CSV files that can be read immediately by pandas, you can use the pandas_profiling
executable.
Run the following for information about options and arguments.
pandas_profiling -h
Advanced usage
A set of options is available in order to adapt the report generated.
title
(str
): Title for the report ('Pandas Profiling Report' by default).pool_size
(int
): Number of workers in thread pool. When set to zero, it is set to the number of CPUs available (0 by default).progress_bar
(bool
): If True,pandas-profiling
will display a progress bar.infer_dtypes
(bool
): WhenTrue
(default) thedtype
of variables are inferred usingvisions
using the typeset logic (for instance a column that has integers stored as string will be analyzed as if being numeric).
More settings can be found in the default configuration file and minimal configuration file.
You find the configuration docs on the advanced usage page here
Example
profile = df.profile_report(
title="Pandas Profiling Report", plot={"histogram": {"bins": 8}}
)
profile.to_file("output.html")
Support
Need help? Want to share a perspective? Want to report a bug? Ideas for collaboration? You can reach out via the following channels:
- Stack Overflow: ideal for asking questions on how to use the package
- Github Issues: bugs, proposals for change, feature requests
- Slack: general chat, questions, collaboration
- Email: project collaboration or sponsoring
Go beyond
Popmon
For many real-world problems we are interested how the data changes over time.
The excellent pacakge To learn more on Popmon, have a look at these resources here |
Great Expectations
Profiling your data is closely related to data validation: often validation rules are defined in terms of well-known statistics.
For that purpose, You can find more details on the Great Expectations integration here |
Types
Types are a powerful abstraction for effective data analysis, that goes beyond the logical data types (integer, float etc.).
pandas-profiling
currently, recognizes the following types: Boolean, Numerical, Date, Categorical, URL, Path, File and Image.
We have developed a type system for Python, tailored for data analysis: visions.
Choosing an appropriate typeset can both improve the overall expressiveness and reduce the complexity of your analysis/code.
To learn more about pandas-profiling
's type system, check out the default implementation here.
In the meantime, user customized summarizations and type definitions are now fully supported - if you have a specific use-case please reach out with ideas or a PR!
Contributing
Read on getting involved in the Contribution Guide.
A low threshold place to ask questions or start contributing is by reaching out on the pandas-profiling Slack. Join the Slack community.
Editor integration
PyCharm integration
- Install
pandas-profiling
via the instructions above - Locate your
pandas-profiling
executable.- On macOS / Linux / BSD:
$ which pandas_profiling (example) /usr/local/bin/pandas_profiling
- On Windows:
$ where pandas_profiling (example) C:\ProgramData\Anaconda3\Scripts\pandas_profiling.exe
- On macOS / Linux / BSD:
- In PyCharm, go to Settings (or Preferences on macOS) > Tools > External tools
- Click the + icon to add a new external tool
- Insert the following values
- Name: Pandas Profiling
- Program: The location obtained in step 2
- Arguments:
"$FilePath$" "$FileDir$/$FileNameWithoutAllExtensions$_report.html"
- Working Directory:
$ProjectFileDir$
To use the PyCharm Integration, right click on any dataset file:
External Tools > Pandas Profiling.
Other integrations
Other editor integrations may be contributed via pull requests.
Dependencies
The profile report is written in HTML and CSS, which means pandas-profiling
requires a modern browser.
You need Python 3 to run this package. Other dependencies can be found in the requirements files:
Filename | Requirements |
---|---|
requirements.txt | Package requirements |
requirements-dev.txt | Requirements for development |
requirements-test.txt | Requirements for testing |
setup.py | Requirements for Widgets etc. |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pandas-profiling-3.2.0.tar.gz
.
File metadata
- Download URL: pandas-profiling-3.2.0.tar.gz
- Upload date:
- Size: 207.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8897c2628e3a9b5c915d038aa1782be7fa9e322e405a51aa4586466ab84e8461 |
|
MD5 | e3a130a03941e21f56831fd163be915d |
|
BLAKE2b-256 | efb47e1234b96445a322f97794813f6b8645f33baabec1d2c6a138e32051a6b8 |
File details
Details for the file pandas_profiling-3.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pandas_profiling-3.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 262.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd063f35a99f8f0c75f109a2bbfa13a58209424b84b67842139562630d9035f7 |
|
MD5 | 17e8f9ec395c0208c4b14ffbcaec496c |
|
BLAKE2b-256 | 57b7e13216265ae3135ecda13e966aad9ce04b7e7b3e2d87d056b032fc9f457c |