gpt4 book ai didi

r - 在 plot 中控制 xlim

转载 作者:行者123 更新时间:2023-12-02 08:29:20 25 4
gpt4 key购买 nike

我的例子:

x = c(1:15)
y = c(-4:10)
plot(x, y)

R 自动给出 xlim 为:2, 4, 6, ..., 14

如何将它更改为:1, 2, 3,..., 15

我试过了:

my.limits = as.numeric(seq(1, 15, by = 1))
x = c(1:15)
y = c(-4:10)
plot(x, y, ylim = c(-4,10), xlim = my.limits)

但有错误:

Erreur dans plot.window(...) : valeur 'xlim' incorrecte

最佳答案

您可以像这样手动设置刻度:

x=c(1:15)
y=c(-4:10)
plot(x,y, xaxt="n", xlim = c(1,15))
axis(1, at = 1:15)

axt="n" 首先省略了在 plot 中绘制 x 轴。 axis 之后手动绘制它 - 您可以通过这种方式获得更多控制权。

关于r - 在 plot 中控制 xlim,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28898781/

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