通常在jupyter笔记本中,我会使用%matplotlib notebook magic来显示一个交互式窗口,但是这似乎不适用于google colab。有解决方案,还是无法在Google colab中显示交互式窗口?

最佳答案

以下是在Google Play笔记本上的Plotly和iplot()中创建交互式cufflinks()的示例。答案 [12]中使用的功能和建议

关键似乎是在进行绘图的单元格中包括configure_plotly_browser_state()

下面的代码应该工作:

导入库

import datetime
from datetime import date
import pandas as pd
import numpy as np
from plotly import __version__
%matplotlib inline

import plotly.offline as pyo
import plotly.graph_objs as go
from plotly.offline import iplot

import cufflinks as cf
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot


cf.go_offline()

将笔记本设置为假
init_notebook_mode(connected=False)

为Colab创建函数
复制自: [12]
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-1.5.1.min.js?noext',
            },
          });
        </script>
        '''))

创建样本数据框

数据来源:美国国家气象局[3]提供的佐治亚州桃树市的年度降雨数据。
df = pd.DataFrame({
    'month': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
    'Year_2018': [3.26, 6.11, 4.86, 6.53, 4.45, 3.86, 8.04, 7.59, 1.48, 4.75, 7.27, 11.83],
    'Year_1996': [8.26, 3.82, 6.42, 2.91, 2.12, 1.70, 2.14, 4.66, 4.32, 0.89, 3.22, 4.14]
}
)
df

创建一个交互式iplot
configure_plotly_browser_state()
df.iplot(kind='line',x='month',y=['Year_2018', 'Year_1996'], color=['white', 'gold'],
theme='solar', mode='markers+lines',title='Annual Rainfall in the city Peachtree City, GA')
plt.show()

输出:
python - Google Colab中的交互式matplotlib图形-LMLPHP

python - Google Colab中的交互式matplotlib图形-LMLPHP

[注意:x,y,标题不会显示!在这一刻。]

关于python - Google Colab中的交互式matplotlib图形,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52859983/

10-13 09:32