我创建了两个气候数据(温度和降水)图(两年)的图形,看起来与我想要的完全一样,只是我的一个轴有太多刻度线。随着我对这个数字所做的一切,我无法找到一种方法来指定更少的刻度线,而不会弄乱其他部分。我还想指定刻度线的位置。这是图:
你可以看到顶轴的刻度线只是模糊在一起,选择的数字对我来说不是很有意义。我怎么能告诉R我真正想要的是什么?
这是我的代码:
par(mfrow=c(2,1))
par(mar = c(5,4,4,4) + 0.3)
plot(cobs10$day, cobs10$temp, type="l", col="red", yaxt="n", xlab="", ylab="",
ylim=c(-25, 30))
axis(side=3, col="black", at=cobs10$day, labels=cobs10$gdd)
at = axTicks(3)
mtext("Thermal Units", side=3, las=0, line = 3)
axis(side=2, col='red', labels=FALSE)
at= axTicks(2)
mtext(side=2, text= at, at = at, col = "red", line = 1, las=0)
mtext("Temperature (C)", side=2, las=0, line=3)
par(new=TRUE)
plot(cobs10$gdd, cobs10$precip, type="h", col="blue", yaxt="n", xaxt="n", ylab="",
xlab="")
axis(side=4, col='blue', labels=FALSE)
at = axTicks(4)
mtext(side = 4, text = at, at = at, col = "blue", line = 1,las=0)
mtext("Precipitation (cm)", side=4, las=0, line = 3)
par(mar = c(5,4,4,4) + 0.3)
plot(cobs11$day, cobs11$temp, type="l", col="red", yaxt="n", xlab="Day of Year",
ylab="", ylim=c(-25, 30))
axis(side=3, col="black", at=cobs11$day, labels=cobs11$gdd)
at = axTicks(3)
mtext("", side=3, las=0, line = 3)
axis(side=2, col='red', labels=FALSE)
at= axTicks(2)
mtext(side=2, text= at, at = at, col = "red", line = 1, las=0)
mtext("Temperature (C)", side=2, las=0, line=3)
par(new=TRUE)
plot(cobs11$gdd, cobs11$precip, type="h", col="blue", yaxt="n", xaxt="n", ylab="",
xlab="", ylim=c(0,12))
axis(side=4, col='blue', labels=FALSE)
at = axTicks(4)
mtext(side = 4, text = at, at = at, col = "blue", line = 1,las=0)
mtext("Precipitation (cm)", side=4, las=0, line = 3)
感谢您的考虑。
答案 0 :(得分:7)
你已经得到了解决方案:
axis(side=3, col="black", at=cobs10$day, labels=cobs10$gdd)
除此之外,您要求在每个条目上都有刻度和标签。
看看函数pretty
:
at <- pretty(cobs10$day)
at
# [1] 0 100 200 300 400
这些是刻度线应放在x轴上的位置。现在您需要找到相应的标签。这不是直截了当的,但我们会得到:
lbl <- which(cobs10$day %in% at)
lbl
# [1] 100 200 300
lbl <- c(0, cobs10$gdd[lbl]
axis(side=3, at=at[-5], labels=lbl)
<强>更新强>
我对你在一个剧情中使用三个不同系列感到有些恼火。造成这种麻烦的原因有很多。
首先,我们会查看您的数据,看看可以天真地做些什么。我们认识到您的“日期”变量是实际日期。让我们利用它,让R意识到它!
cobs10 <- read.table('cobs10.txt',as.is=TRUE)
cobs10$date <- as.Date(cobs10$date)
plot(temp ~ date, data=cobs10, type='l')
在这里,我非常喜欢X轴刻度并且在复制时遇到了一些麻烦。 ''漂亮''在日期坚持4蜱或12蜱。但我们稍后会再回过头来看。
接下来,我们可以对叠加绘图做些什么。在这里,我使用''par(mfrow = c(3,1))''来指示R在一个窗口中堆叠三个多个图;通过这些多个图,我们可以区分内部和外部边距。 ''mar''和''oma''参数指的是内部和外部边距。
让我们把所有三个变量放在一起!
par(mfrow=c(3,1), mar=c(0.6, 5.1, 0, 0.6), oma=c(5.1, 0, 1, 0))
plot(temp ~ date, data=cobs10, type='l', ylab='Temperatur (C)')
plot(precip ~ date, data=cobs10, type='l', ylab='Precipitation (cm)')
plot(gdd ~ date, data=cobs10, type='l', ylab='Thermal units')
这看起来没问题,但不是在图表顶部有刻度线。不好。当然,我们可以在前两个图中启用刻度(使用''plot(...,xaxt ='n')''),但这会扭曲底部图。因此,您需要对所有三个绘图执行此操作,然后将轴添加到外部绘图区域。
par(mfrow=c(3,1), mar=c(0.6, 5.1, 0, 0.6), oma=c(5.1, 0, 1, 0))
plot(temp ~ date, data=cobs10, type='l', xaxt='n', ylab='Temperatur (C)')
plot(precip ~ date, data=cobs10, type='l', xaxt='n', ylab='Precipitation (cm)')
plot(gdd ~ date, data=cobs10, type='l', xaxt='n', ylab='Thermal units')
ticks <- seq(from=min(cobs10$date), by='2 months', length=7)
lbl <- strftime(ticks, '%b')
axis(side=1, outer=TRUE, at=ticks, labels=lbl)
mtext('2010', side=1, outer=TRUE, line=3, cex=0.67)
由于''pretty''的行为不符合我们的要求,我们使用''seq''来制作x轴刻度序列。然后我们将日期格式化为仅显示月份名称的缩写,但这是关于本地设置(我住在丹麦),请参阅''locale''。 要将轴刻度和标签添加到外部区域,我们必须记住指定''outer = TRUE'';否则它被添加到最后一个子图。 另请注意,我指定''cex = 0.67''以匹配x轴的字体大小和y轴。
现在我同意在单个子图中显示热单位并不是最佳的,尽管它是显示它的正确方法。但是蜱虫存在问题。我们真正想要的是显示一些很好的值,清楚地表明它们不是线性的。但是你的数据不一定包含这些好的值,所以我们必须自己插入它们。 为此,我使用''splinefun''
lbl <- c(0, 2, 200, 1000, 2000, 3000, 4000)
thermals <- splinefun(cobs10$gdd, cobs10$date) # thermals is a function that returns the date (as an integer) for a requested value
thermals(lbl)
## [1] 14649.00 14686.79 14709.55 14761.28 14806.04 14847.68 14908.45
ticks <- as.Date(thermals(lbl), origin='1970-01-01') # remember to specify an origin when converting an integer to a Date.
现在热刻度已经到位,让我们尝试一下。
par(mfrow=c(2,1), mar=c(0.6, 5.1, 0, 0.6), oma=c(5.1, 0, 4, 0))
plot(temp ~ date, data=cobs10, type='l', xaxt='n', ylab='Temperatur (C)')
plot(precip ~ date, data=cobs10, type='l', xaxt='n', ylab='Precipitation (cm)')
usr <- par('usr')
x.pos <- (usr[2]+usr[1])/2
ticks <- seq(from=min(cobs10$date), by='2 months', length=7)
lbl <- strftime(ticks, '%b')
axis(side=1, outer=TRUE, at=ticks, labels=lbl)
mtext('2010', side=1, at=x.pos, line=3)
lbl <- c(0, 2, 200, 1000, 2000, 3000, 4000)
thermals <- splinefun(cobs10$gdd, cobs10$date) # thermals is a function that returns the date (as an integer) for a requested value
ticks <- as.Date(thermals(lbl), origin='1970-01-01') # remember to specify an origin when converting an integer to a Date.
axis(side=3, outer=TRUE, at=ticks, labels=lbl)
mtext('Thermal units', side=3, line=15, at=x.pos)
更新我更改了最后一个代码块中的mtext
函数调用,以确保x轴文本以绘图区域为中心,而不是整个地区。您可能希望通过更改line
- 参数来调整垂直位置。