无法识别关键字轮换(熊猫分析)

时间:2019-12-24 09:56:58

标签: python pandas pandas-profiling

我正在尝试使用pandas_profiling软件包进行数据分析。对于基本用法,我遵循了本文档

https://github.com/pandas-profiling/pandas-profiling

并使用其中的以下代码

import numpy as np
import pandas as pd
import pandas_profiling

df = pd.DataFrame(
np.random.rand(100, 5),
columns=['a', 'b', 'c', 'd', 'e']
)

df.profile_report(style={'full_width':True})

但是在Anaconda中运行此代码后,出现以下错误

ValueError:无法识别关键字轮换;有效的关键字是['size','width','color','tickdir','pad','labelsize','labelcolor','zorder','gridOn','tick1On','tick2On','label1On ','label2On','length','direction','left','bottom','right','top','labelleft','labelbottom','labelright','labeltop']

1 个答案:

答案 0 :(得分:0)

供以后参考:更新您的pandas和matplotlib软件包。高于2.4.0的pandas配置文件版本将自动更新这些软件包。