我试图使用pandas profiling for profile report.我得到了错误“module' object is not callable.我如何从Anaconda在Jupyter notebook中修复。
我的代码:
import pandas as pd
import pandas_profiling
df = pd.read_csv(r'C:\Users\tai.phan\Desktop\Pythone training\Data\titanic.csv')
pandas_profiling.profile_report(df)
错误:
TypeError: 'module' object is not callable
3条答案
按热度按时间fnx2tebb1#
pandas_profiling不是函数
查看文档以了解此模块的更多信息
也可以从下面的函数列表中为profile_report选择函数
cbjzeqam2#
df.profile_report()
为我工作wribegjk3#
以上是为我工作