在Google Colab 中显示Plotly

在 Google Colab 中显示 Plotly

Python绘图可视化工具包-Plotly

Plotly 能够绘制交互式的数据可视化图表,提供印刷品质的图表图片。

近日,笔者在 colab 上使用 Plotly,遇到了一个小坑,需要运行特定函数,才能在 colab 上显示 Plotly 的交互图表。

解决代码分享:

Plotly in Colab.ipynb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import plotly.plotly as py
from plotly.offline import init_notebook_mode, iplot
def configure_plotly_browser_state():
import IPython
display(IPython.core.display.HTML('''
<script src="/static/components/requirejs/require.js"></script>
<script>
requirejs.config({
paths: {
base: '/static/base',
plotly: 'https://cdn.plot.ly/plotly-latest.min.js?noext',
},
});
</script>
'''))
configure_plotly_browser_state()
init_notebook_mode(connected=False)

changelog

2019.04.10 init