gpt4 book ai didi

julia - 使用 Plots.jl 显示多个图

转载 作者:行者123 更新时间:2023-12-01 13:34:40 32 4
gpt4 key购买 nike

我目前有两个向量,x 和 y,我分别绘制,如

using Plots
pyplot() # chooses pyplot background
x = rand(100); y = rand(100)
plt1 = plot(x)
display(plt1)
plt2 = plot(y)
display(plt2)

我也试过 gui()gui(plt1)功能,但这些具有与 display(plt1) 类似的效果功能。另请注意,我在文件中运行它(因此必须使用 display() 函数)。我也在 REPL 中尝试过类似的代码,它有同样的问题,即只显示我调用的最后一个图。

我的问题是如何同时显示两个不同的数字?我目前的实现有 plt2覆盖 plt1 ,所以我无法同时看到它们。请注意,我不是要制作子情节,而是要制作两个不同的人物。有没有 figure()类似于 Matplotlib 的功能,它允许声明单独的数字?

最佳答案

是的,使用短语 plt2 = plot(y, reuse = false)

关于julia - 使用 Plots.jl 显示多个图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44416491/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com