gpt4 book ai didi

r - 用户在 plot() 函数中定义的轴刻度

转载 作者:行者123 更新时间:2023-12-04 09:52:31 25 4
gpt4 key购买 nike

我正在尝试制作轴在 0-25-50-75-100 上中断的条形图,但我找不到执行此操作的参数。我的语法来自 likert package :

plot(x, ordered=FALSE, group.order=names(data))

这将显示 0-50-100 的中断。该图必须是 Tornado 图,这是likert 包提供的上述功能。看一个例子:

enter image description here

在另一个示例中,您可以看到我想要的内容:

enter image description here

最佳答案

我没有likert包。绘图函数似乎是建立在 R 标准之上的新方法 plot()功能。因此,您应该能够使用 R 的标准图形参数。关键参数是 xaxp= ,它允许您指定刻度线在 x 轴上的位置。这是一个使用 hist() 的示例:

  # this will allow you to run my code & get the same results
set.seed(1)
# here I generate some data
x <- runif(100, min=0, max=100)
# this makes the histogram, the xaxp argument does what you're after
hist(x, breaks=c(0,25,50,75,100), xaxp=c(0,100,4))

enter image description here

有关更多信息,请参阅: R, change the spacing of tick marks on the axis of a plot?

关于r - 用户在 plot() 函数中定义的轴刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21710490/

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