在VS code中不显示图片

下面是我的代码:

我的运行结果:

我的图呢??

你 display(plt)试一试

1 个赞

按理说,你display(plt)就应该可以出图了;
同样,你把plt=去掉,也应该可以出图。

另外,建议提问直接复制代码而不是使用截图,这样方便别人帮你测试代码

2 个赞

谢谢,感谢你的建议。

请问:搞定vscode中显示图形的问题了么?
加了 display(plt), 运行时有个窗口一闪而过,依然没法正常观察图片。

换个思路:把图片保存到磁盘上。

块引用实例代码如下
using Plots

x = 1:10; y = rand(10); # These are the plotting data

plt = plot(x,y, label=“my label”)

display(plt);

savefig(“plot.png”)

1 个赞