gpt4 book ai didi

r - 调整 R 中 levelplot 函数中轴标签的字体大小

转载 作者:行者123 更新时间:2023-12-04 11:22:00 24 4
gpt4 key购买 nike

我有一个 90 x 90 的矩阵,我正在尝试获取数组相关矩阵。使用以下命令:

pdf('corr.pdf')
data <- read.table("test", header=T)
z <- cor(data)
levelplot(z)
dev.off()

我得到这样的图像,我的标签被弄脏了 enter image description here

请提出改进​​图像的建议。

谢谢

最佳答案

编辑:以levelplot manual中的第一个例子为例并将 scales=list(log="e") 参数更改为 scales=list(log="e",x=list(cex=.3),y=list(cex =.3)):

x <- seq(pi/4, 5 * pi, length.out = 100)
y <- seq(pi/4, 5 * pi, length.out = 100)
r <- as.vector(sqrt(outer(x^2, y^2, "+")))
grid <- expand.grid(x=x, y=y)
grid$z <- cos(r^2) * exp(-r/(pi^3))
levelplot(z~x*y, grid, cuts = 50,
scales=list(log="e",x=list(cex=.3),y=list(cex=.3)), xlab=list(cex=.05),
ylab=list(cex=.25), main=list(label="Weird Function", cex=5), sub="with log scales",
colorkey = FALSE, region = TRUE)

这会将轴标签的字体大小减小 0.3 倍。

关于r - 调整 R 中 levelplot 函数中轴标签的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10300518/

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