R:如何将轴标签移近图

时间:2015-06-11 23:26:22

标签: r visualization

我想将轴标签移近我的情节。我怎样才能做到这一点?

set.seed(3)
plot(rnorm(10), xlab = "Age", ylab = "Weight", cex.lab = 1.5)

enter image description here

2 个答案:

答案 0 :(得分:6)

我认为您正在寻找的命令是:

par(mgp=c(2,1,0))  

然后创建你的情节:

plot(rnorm(10), xlab = "Age", ylab = "Weight", cex.lab = 1.5)

完成后,您可以将其重置为默认值:

par(mgp=c(3,1,0))

答案 1 :(得分:3)

使用title()并指定line应该适合您。您可能还需要考虑通过par(oma = c())par(mar = c())更改边距(数字顺序为:底部,左侧,顶部,右侧)。

set.seed(3)
plot(rnorm(10), xlab = "Age", ylab = "", cex.lab = 1.5)
title(ylab = "Weight", line = 2, cex.lab = 1.5)

希望有所帮助