ydata-profiling的主要目标是提供一种简洁而快速的探索性数据分析(EDA)体验。就像pandas中的df.describe()函数非常方便一样,ydata-profiling可以对DataFrame进行扩展分析,并允许将数据分析导出为不同格式,例如html和json。
该软件包输出了一个简单而易于理解的数据集分析结果,包括时间序列和文本数据。
1. 安装
pip install ydata-profiling
2. 使用
import numpy as np
import pandas as pd
from ydata_profiling import ProfileReport
df = pd.DataFrame(np.random.rand(100, 5), columns=['a','b','c','d','e'])
profile = ProfileReport(df, title="Profiling Report")
ydata-profiling的结果会使用一些关键属性:
报告还包含三个额外的部分:
ydata-profiling可以用于比较同一数据集的多个版本。当需要对比不同时间段(如两年)的数据时,这非常有用。另一个常见的场景是在机器学习中查看训练、验证和测试数据集的数据概况。例如:
from ydata_profiling import ProfileReport
train_df = pd.read_csv("train.csv")
train_report = ProfileReport(train_df, title="Train")
test_df = pd.read_csv("test.csv")
test_report = ProfileReport(test_df, title="Test")
comparison_report = train_report.compare(test_report)
comparison_report.to_file("comparison.html")
比较报告使用设置中的标题属性作为标签。颜色在settings.html.style.primary_colors中进行配置。可以通过调整numeric precision参数settings.report.precision来获得报告中的一些额外空间。
当比较多个报告时:
from ydata_profiling import ProfileReport, compare
comparison_report = compare([train_report, validation_report, test_report])
# Obtain merged statistics
statistics = comparison_report.get_description()
# Save report to file
comparison_report.to_file("comparison.html")
请注意,此功能仅确保支持对两个数据集进行比较的报告。可以获取统计信息,但报告可能存在格式问题。其中一个可以更改的设置是settings.report.precision。根据经验,可以将值10用于单个报告,将值8用于比较两个报告。
pandas-profiling可以用于对时间序列数据进行快速的探索性数据分析。这对于快速了解与时间相关的变量的行为(如时间图、季节性、趋势和平稳性)非常有用。
结合profiling reports compare,您可以比较时间上的演变和数据行为,以时间序列特定统计信息(如PACF和ACF图)为基础。
以下语法可用于在假设数据集包含时间相关特征的情况下生成概要报告:
import pandas as pd
from ydata_profiling.utils.cache import cache_file
from ydata_profiling import ProfileReport
file_name = cache_file(
"pollution_us_2000_2016.csv",
"https://query.data.world/s/mz5ot3l4zrgvldncfgxu34nda45kvb",
)
df = pd.read_csv(file_name, index_col=[0])
# Filtering time-series to profile a single site
site = df[df["Site Num"] == 3003]
profile = ProfileReport(df, tsmode=True, sortby="Date Local", title="Time-Series EDA")
profile.to_file("report_timeseries.html")
要生成时间序列报告,需要将ts_mode设置为“True”。如果设置为“True”,那些具有时间依赖性的变量将根据自相关的存在自动识别出来。时间序列报告使用sortby属性对数据集进行排序。如果未提供此属性,则假定数据集已经按顺序排列。
在某些情况下,您可能已经清楚哪些变量应该是时间序列,或者您只想确保您希望作为时间序列进行分析的变量被正确地进行概要分析:
import pandas as pd
from ydata_profiling.utils.cache import cache_file
from ydata_profiling import ProfileReport
file_name = cache_file(
"pollution_us_2000_2016.csv",
"https://query.data.world/s/mz5ot3l4zrgvldncfgxu34nda45kvb",
)
df = pd.read_csv(file_name, index_col=[0])
# Filtering time-series to profile a single site
site = df[df["Site Num"] == 3003]
# Setting what variables are time series
type_schema = {
"NO2 Mean": "timeseries",
"NO2 1st Max Value": "timeseries",
"NO2 1st Max Hour": "timeseries",
"NO2 AQI": "timeseries",
"cos": "numeric",
"cat": "numeric",
}
profile = ProfileReport(
df,
tsmode=True,
type_schema=type_schema,
sortby="Date Local",
title="Time-Series EDA for site 3003",
)
profile.to_file("report_timeseries.html")
默认情况下,ydata-profiling以最能提供数据分析洞察的方式全面总结输入数据集。对于小型数据集,这些计算可以准实时进行。对于较大的数据集,可能需要事先决定要进行哪些计算。一个计算是否适用于大型数据集不仅取决于数据集的确切大小,还取决于其复杂性以及是否可用快速计算。如果概要分析的计算时间成为瓶颈,ydata-profiling提供了几种解决方案来克服这一问题。
3.1 最小模式
ydata-profiling包含一个最小配置文件,默认情况下关闭了最费力的计算。这是处理较大数据集的推荐起点。
profile = ProfileReport(large_dataset, minimal=True)
profile.to_file("output.html")
3.2 对数据集取样
处理非常大型数据集的另一种方法是使用其中一部分数据生成概要分析报告。一些用户报告称,这是在保持代表性的同时缩短计算时间的好方法。
sample = large_dataset.sample(10000)
profile = ProfileReport(sample, minimal=True)
profile.to_file("output.html")
报告的读者可能想了解概要分析是使用数据样本生成的。可以通过向报告添加描述来说明这一点。
description = "Disclaimer: this profiling report was generated using a sample of 5% of the original dataset."
sample = large_dataset.sample(frac=0.05)
profile = sample.profile_report(dataset={"description": description}, minimal=True)
profile.to_file("output.html")
3.3 禁用费力的计算
为了减少特别大型数据集中的计算负担,但仍然保留可能来自它们的一些感兴趣的信息,可以仅针对某些列过滤一些计算。特别地,可以提供一个目标列表给Interactions,以便仅计算与这些特定变量有关的交互作用。
from ydata_profiling import ProfileReport
import pandas as pd
# Reading the data
data = pd.read_csv(
"https://raw.githubusercontent.com/datasciencedojo/datasets/master/titanic.csv"
)
# Creating the profile without specifying the data source, to allow editing the configuration
profile = ProfileReport()
profile.config.interactions.targets = ["Name", "Sex", "Age"]
# Assigning a DataFrame and exporting to a file, triggering computation
profile.df = data
profile.to_file("report.html")
控制此设置的"interactions.targets" 可以通过多个接口进行更改(配置文件或环境变量)。
3.4 并发性
ydata-profiling是一个正在积极开发的项目。其中一个非常期望的功能是添加可扩展的后端,例如Modin或Dask。
在某些数据敏感的背景下(例如,私人健康记录),分享包含样本的报告可能会违反隐私约束。以下配置简写将各种选项分组在一起,以便在报告中只提供聚合信息,而不显示个人记录:
report = df.profile_report(sensitive=True)
此外,pandas-profiling不会将数据发送到外部服务,因此非常适合处理私人数据。
4.1 样本和重复值
可以禁用显示数据集样本和重复行的功能,以确保报告不会直接泄漏任何数据:
report = df.profile_report(duplicates=None, samples=None)
或者,仍然可以显示一个样本,但以下代码片段演示了如何生成报告,但在数据集样本部分使用模拟/合成数据。请注意,name和caption键是可选的。
# Replace with the sample you'd like to present in the report (can be from a mock or synthetic data generator)
sample_custom_data = pd.DataFrame()
sample_description = "Disclaimer: the following sample consists of synthetic data following the format of the underlying dataset."
report = df.profile_report(
sample={
"name": "Mock data sample",
"data": sample_custom_data,
"caption": sample_description,
}
)
4.2 数据集元数据、数据字典和配置
当与同事共享报告或在网上发布时,包含数据集的元数据(如作者、版权持有人或描述)可能很重要。ydata-profiling允许用这些信息来补充报告。受到schema.org的数据集启发,目前支持的属性有description、creator、author、url、copyright_year和copyright_holder。
以下示例展示了如何生成一个包含描述、版权持有人、版权年份、创作者和URL的报告。在生成的报告中,这些属性将出现在概述部分的“关于”下面。
report = df.profile_report(
title="Masked data",
dataset={
"description": "This profiling report was generated using a sample of 5% of the original dataset.",
"copyright_holder": "StataCorp LLC",
"copyright_year": 2020,
"url": "http://www.stata-press.com/data/r15/auto2.dta",
},
)
report.to_file(Path("stata_auto_report.html"))
除了提供数据集的详细信息外,用户在与团队成员和利益相关者分享报告时,通常希望包含针对每列的具体描述。ydata-profiling支持创建这些描述,以便报告中包含内置的数据字典。默认情况下,这些描述会在报告的概述部分中呈现,在每个变量旁边显示。
profile = df.profile_report(
variables={
"descriptions": {
"files": "Files in the filesystem, # variable name: variable description",
"datec": "Creation date",
"datem": "Modification date",
}
}
)
profile.to_file(report.html)
另外,列描述可以从一个JSON文件中加载:
{
column name 1: column 1 definition,
column name 2: column 2 definition
}
import json
import pandas as pd
import ydata_profiling
definition_file = dataset_column_definition.json
# Read the variable descriptions
with open(definition_file, r) as f:
definitions = json.load(f)
# By default, the descriptions are presented in the Overview section, next to each variable
report = df.profile_report(variable={"descriptions": definitions})
# We can disable showing the descriptions next to each variable
report = df.profile_report(
variable={"descriptions": definitions}, show_variable_description=False
)
report.to_file("report.html")
除了提供数据集的详细信息,用户通常还希望包含设置类型模式。当将ydata-profiling生成与数据目录中已有的信息集成时,这一点尤为重要。当使用ydata-profiling的ProfileReport时,用户可以设置type_schema属性来控制生成的数据类型分析。默认情况下,type_schema会通过visions自动推断。
import json
import pandas as pd
from ydata_profiling import ProfileReport
from ydata_profiling.utils.cache import cache_file
file_name = cache_file(
"titanic.csv",
"https://raw.githubusercontent.com/datasciencedojo/datasets/master/titanic.csv",
)
df = pd.read_csv(file_name)
type_schema = {"Survived": "categorical", "Embarked": "categorical"}
# We can set the type_schema only for the variables that we are certain of their types. All the other will be automatically inferred.
report = ProfileReport(df, title="Titanic EDA", type_schema=type_schema)
report.to_file("report.html")
在某些情况下,用户可能希望根据个人喜好或公司品牌来自定义报告的外观。ydata-profiling提供了两个主要的自定义方面:HTML报告的样式和其中包含的可视化和图表的样式
5.1 自定义报告的主题
报告的多个方面都可以进行自定义。下表显示了可用的设置:
参数 | 类型 | 默认 | 描述 |
---|---|---|---|
html.minify_html | bool | True | 如果为True,则使用htmlmin包对输出的HTML进行最小化处理。 |
html.use_local_assets | bool | True | 如果为True,则所有资源(样式表、脚本、图片)将被存储在本地。如果为False,则使用CDN来提供部分样式表和脚本。 |
html.inline | boolean | True | 如果为True,则所有资源都包含在报告中。如果为False,则创建一个Web导出,其中所有资源都存储在“[REPORT_NAME]_assets/”目录中。 |
html.navbar_show | boolean | True | 是否在报告中包含导航栏。 |
html.style.theme | string | None | 选择开机自检主题。可选项:平坦(深色)和团结(橙色) |
html.style.logo | string | base64 编码的徽标,显示在导航栏中 | |
html.style.primary_color | string | #337ab7 | 报告中使用的主色调。 |
html.style.full_width | boolean | False | 默认情况下,报告的宽度是固定的。如果设置为 “True”,则使用屏幕全宽。 |
向底层 matplotlib 可视化引擎传递参数的一种方法是在计算剖面图时使用 plot 参数。可以使用关键对 image_format: “png”,并使用 dpi: 800 更改图像的分辨率。举例如下
profile = ProfileReport(
planets,
title="Pandas Profiling Report",
explorative=True,
plot={"dpi": 200, "image_format": "png"},
)
饼图用于绘制分类(或布尔)特征中的类别频率。默认情况下,如果一个特征的独特值不超过 10 个,则该特征被视为分类特征。这个阈值可以通过 plot.pie.max_unique 设置来配置。
如果特征未被视为分类特征,则不会显示饼图。因此,可以通过设置:plot.pie.max_unique = 0 来删除所有饼图。
饼图的颜色可以通过 plot.pie.colors 设置配置为任何可识别的 matplotlib 颜色。
profile = ProfileReport(pd.DataFrame([1, 2, 3]))
profile.config.plot.pie.colors = ["gold", "b", "#FF796C"]
相关矩阵和缺失值概览等可视化工具中使用的调色板也可以通过 plot 参数进行自定义。要自定义相关矩阵使用的调色板,请使用相关键:
from ydata_profiling import ProfileReport
profile = ProfileReport(
df,
title="Pandas Profiling Report",
explorative=True,
plot={"correlation": {"cmap": "RdBu_r", "bad": "#000000"}},
)
同样,缺失值的调色板也可以使用missing参数来更改:
from ydata_profiling import ProfileReport
profile = ProfileReport(
df,
title="Pandas Profiling Report",
explorative=True,
plot={"missing": {"cmap": "RdBu_r"}},
)