我正在尝试绘制正态分布,您可以在其中指定范围。我需要将其作为html返回。我使用了this example中的一些代码。我需要做什么才能使回调工作?现在,当我在浏览器中查看开发人员工具时,我得到list not defined
错误。
import numpy as np
import scipy.stats
from bokeh.layouts import column
from bokeh.models import CustomJS, Slider
from bokeh.plotting import figure, output_file, show, ColumnDataSource
output_file("slider2.html")
N = 500;a = 0;b = 1
x = list(np.linspace(a, b, N))
z = list(scipy.stats.norm.pdf(x,abs(b-a)/2,abs(b-a)/6))
source = ColumnDataSource(data=dict(x=x,z=z))
plot = figure(plot_width=400, plot_height=400)
plot.line('x', 'z', source=source, line_width=2, line_alpha=0.3)
callback = CustomJS(args=dict(source=source), code="""
var d2 = source.get('data');
var b = cb_obj.get('value')
d2['x'] = list(np.linspace(a, b, N))
d2['z'] = scipy.stats.norm.pdf(x,abs(b-a)/2,abs(b-a)/6);
source.change.emit();
""")
slider = Slider(start=1, end=10, value=1, step=.1, title="upper limit", callback=callback)
layout = column(slider, plot)
show(layout)
答案 0 :(得分:1)
经过一些修补,我设法得到了我想要的结果。
总结上面的讨论: CustomJS代码必须用纯Javascript 编写。因此,使用任何python函数都会导致html文件中的错误。但是可以使用Javascript函数。
callback = CustomJS(args=dict(source=source), code="""
var d2 = source.get('data');
var b = cb_obj.get('value')
for (i = 0; i < 1000; i++) {
x[i]=Math.random()*b
}
x.sort(function(a, b){return a - b})
source.data['x']=x
z=d2['z']
var first=(1/Math.sqrt(2*Math.PI*Math.pow(b/6,2)))
for (i = 0; i < x.length; i++) {
z[i] = first*(Math.exp(-Math.pow((x[i]-(b/2))/(b/6),2)));
}
source.trigger('change');
""")