gpt4 book ai didi

r - 如何更改 R boxplot 函数中的 y 轴刻度

转载 作者:行者123 更新时间:2023-12-02 00:13:57 28 4
gpt4 key购买 nike

当我使用 R boxplot 函数绘制箱线图时,此函数会自动打印 y 轴。

library(datasets)

boxplot(cars[c('speed', 'dist')],
col = "lightgray")

?boxplot 中,我发现 ylim 参数可以更改 y 轴限制,但不会更改比例。所以我尝试使用 axis 函数将刻度从 0 到 120 每 10 分一次:轴(4,在 = seq(0、120、10))。但我没有得到满意的结果。

我看不出我哪里出错了。有人可以帮忙解答这个问题吗?
提前致谢。

boxplot

最佳答案

library(datasets)
boxplot(cars[c('speed', 'dist')], col = "lightgray", ylim = range(0:120), yaxs = "i")
axis(4, at=seq(0, 120, 10))

enter image description here

我相信 y 轴在您想要的右侧。

关于r - 如何更改 R boxplot 函数中的 y 轴刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57612984/

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