2

使用 mtext 进行标签描述与使用 xlab 不同。如何使 mtext 标签的大小始终与使用 xlab 时的大小相同(而不总是定义 cex 参数)。在下面的最小示例中 cex=cex.lab=1 两个数字。不过大小不一样。

layout(matrix(c(1,1,2,2), ncol=1))
op<-par(mar=c(4,4,2,1))
plot(1:10, xlab="", ylab="", main="This is my title")
mtext("this is the x-axis", side=1, line=2.75, cex=1)
mtext("this is the y-axis", side=2, line=2.5, cex=1)
plot(1:10,  xlab="this is smaller", ylab="this is smaller", main="This is my title", cex.lab=1)
par(op)

在此处输入图像描述

4

1 回答 1

3

cex=1使用布局时, in的含义plot是不同的,但我没想到这种差异会扩展到 mtext,因为它的活动在各个绘图区域之外。您可以通过反转 2/3 的预期因子来反转“有效”cex内部的默认减少:plot

layout(matrix(c(1,1,2,2), ncol=1))
op<-par(mar=c(4,4,2,1))
plot(1:10, xlab="", ylab="", main="This is my title")
mtext("this is the x-axis", side=1, line=2.75, cex=1)
mtext("this is the y-axis", side=2, line=2.5, cex=1)
plot(1:10,  xlab="this is _not_ smaller", 
            ylab="this is _not_ smaller, either", 
            main="This is my title", 
            cex.lab=3/2)
par(op)

进一步阅读:

 ?par  # scroll down to mfcol, mfrow
于 2014-07-30T16:56:51.217 回答