gpt4 book ai didi

plot - 在 Julia 中使用 PyPlot 图设置 Axis 原点

转载 作者:行者123 更新时间:2023-12-05 01:20:01 28 4
gpt4 key购买 nike

我对 Julia 完全陌生。我在 Julia 中使用 PyPlot 包,只是试图将我的 x 和 y Axis 原点分别设置为 0 和 0。目前它只是根据我正在绘制的点的值选择原点的位置。

plot(x1,y1,".")
xlabel("X1")
ylabel("Y1")
title("First Line")
grid("on")

我已经尝试了以下方法,但它不起作用。 change matplotlib axis settings

最佳答案

在 Julia 中使用 PyPlot 不同于在 Python 中使用 matplotlib。您正在寻找相当于在 Axis 上设置限制的 Julia。我找到了 this useful github repo这可能对你有用。

以下是您可以向 y Axis 添加自定义限制的方法:

using PyPlot

x1 = rand(50, 1) .* 30 .+ 50
y1 = rand(50, 1) .* 30 .+ 100

plot(x1, y1)

# get the current axis argument of the plot
ax = gca()

# add new limits from 0 - 100
ax[:set_ylim]([0,100])

关于plot - 在 Julia 中使用 PyPlot 图设置 Axis 原点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36073242/

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