在 Julia 中同时使用 Interact 和 Gadfly 包时,应该出现在图中(来自 Interact)的滑块不会出现。这是一个代码示例:
using Gadfly
using Interact
set_default_plot_size(15cm, 15cm)
f(x)= e^x
x =-10:0.001:10
@manipulate for a in 1:5, b in 4:9
plot(
layer(x=x, y=f.(x)*a, Geom.line),
layer(x=[-10; 10], y=[10000; 10000], Geom.line),
Coord.Cartesian(xmin=0,xmax=10)
)
end
我在 0.6.2 版上运行 Julia。
谢谢。