Jupyter中的Interactive Plotly非预先计算功能

时间:2019-01-09 13:56:20

标签: python matplotlib plotly jupyter interactive

我想使用plotly.offline.iplot函数在jupyter中使用Plotly进行交互式绘图。

使用matplotlib,可以按以下步骤进行操作:

from ipywidgets import *
import numpy as np
import matplotlib.pyplot as plt

t = np.arange(0.0,1.0,0.01)

def pltsin(f):
    plt.plot(np.sin(2*np.pi*t*f))
    plt.show()

interact(pltsin, f=(1,10,0.1))

enter image description here

Plotly tutorial解释了如何使用字典来执行此操作,该字典包含所有预先计算的绘图。但是对于我的应用程序,我有多个滑块和数十亿个配置,因此无法进行预先计算。

如何使用Plotly即时计算函数?

(我没有使用 online 这个词,因为在Plotly中意味着其他意思)

0 个答案:

没有答案