Python 如何在 DataFrame 中使用 iplot?
python如何在dataframe中使用iplot?
如图所示,出现了问题:
typeerror: 'dataframe' object has no attribute 'iplot'
这个问题的根源在于pandas的dataframe对象没有内置的iplot方法。要使用iplot方法,需要利用第三方库cufflinks将plotly的iplot方法导入到dataframe中。
具体步骤如下:
-
安装cufflinks库:
pip install cufflinks
-
导入cufflinks库:
import cufflinks as cf
-
设置脱机模式:
cf.go_offline()
-
设置配置文件:
cf.set_config_file(offline=False, world_readable=True)
完成以上步骤后,就可以在dataframe对象上调用iplot方法了。
以上就是Python 如何在 DataFrame 中使用 iplot?的详细内容,更多请关注硕下网其它相关文章!