Gadfly结果如何在网页中显示

function plot_result(location_data,duv_data,depth=10)
    plot_df=DataFrame()#构建绘图所需的dataframe
    location_data=reshape(collect(reinterpret(Float64,location_data)),(2,length(location_data)))'
    plot_df[:lon]=location_data[:,1]
    plot_df[:lat]=location_data[:,2]
    set_default_plot_size(20cm, 20cm)#设置默认图像大小
    plot(x=plot_df[:lon], y=plot_df[:lat],Geom.point)
end

在用Gadfly的画图的时候,由于数据大概有21600个点,但无法显示结果,所以看了一下警告
julia> Warning: The “application/juno+plotpane” MIME type is deprecated. Please use “application/prs.juno.plotpane+html” instead.
求教怎么用Gadfly所推荐的方式显示图像

保存为文件试试