1. 版本:python 3.5 + PYCHARM + juby notebook
2. 问题:已导入plotly包裹,运用iplot函数时发现,没有报错讯息,
但图就是显示不出来
3. 程式码1:Python实战:决战虚拟货币市场 原文网址
https://itw01.com/2HRTE7Q.html
最近对区块链有兴趣,有兴趣的人也可以进入网址,自己玩玩看
4. 程式码2:单纯测plotly
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
init_notebook_mode(connected=True)
iplot([{"x": [1, 2, 3], "y": [3, 1, 6]}])
我的图显示不出来...T_T