我无法导入plotly.figure_factory
我使用的代码基于this example
该模块由以下代码段导入:
import plotly.plotly as py import plotly.figure_factory as FF
我在plotly的网站上找不到关于figure_factory的任何文档.
有任何想法吗 ?
解决方法
Plotly的文档有时会有些不一致,并且错过了对库本身的一些更新.
如果用第二行代替
from plotly.tools import FigureFactory as FF
您的代码应该按预期工作.