(R)在beanplot包的beanplot函数中更改xlab、ylab和title的大小

h7wcgrx3  于 2022-12-25  发布在  其他
关注(0)|答案(1)|浏览(143)

我想问一下如何从beanplot包中更改beanplot函数中xlab、ylab和title的大小,因为我找不到特定的参数。
先谢了
我找不到任何参数来更改beanplot中的文本大小

iaqfqrcu

iaqfqrcu1#

beanplot函数使用base图形系统。这意味着您可以使用par函数修改所有图形参数。

# Save graphics parameters, setup 1x2 figure for the next plot
opar <- par(mfrow = c(1,2), cex.lab=1, cex.main=1)

beanplot(rnorm(22), rnorm(22), rnorm(22), main="Test!", rnorm(3), xlab="X-label")

# Change the size of the title and x-axis label
par(cex.lab=2, cex.main=3)
beanplot(rnorm(22), rnorm(22), rnorm(22), main="Test!", rnorm(3), xlab="X-label (x2)")

# Return to the previous state
par(opar)

相关问题