R绘图标记X轴时出现问题

时间:2014-08-21 15:06:30

标签: r plot label axis

我是R的初学者,我有2个问题,我不知道如何在这个图中解决。 我目前的情节标签有一些问题 在X轴,标签是重叠的,我不知道如何删除所有这些,谁能帮忙吗?我想只留下月份作为x轴标签。

其次,我想在x轴上添加月份刻度,但是你可能知道x轴没有在Jan开始,所以我不知道如何添加刻度。有谁能请我帮忙?!

使用我用于参考的代码

windows(width=7*1.5,height=12/2)
par(mar=c(4,4,2,5))
plot(weather.data$date, lsmtemp$fitted, col="red", lwd=2, "l", xlab="month", ylab="Temperature (C)/Vapour Pressure (mb)/Absolute humidity(g/m^3)")
lines(weather.data$date, lsah1$fitted, col="blue", lwd=2, xlab="")
lines(weather.data$date, lsah2$fitted, col="green", lwd=2, xlab="")
lines(weather.data$date, lsvaporpressure$fitted, col="steelblue", lwd=2, xlab="")

par(new=TRUE)
plot(weather.data$date, lsmrh$fitted, ylim=c(0,100), col="orange", lwd=2, ylab=NA, axes=FALSE)
axis(side=4)
mtext(side=4,line=3,"Relative Humiditiy (%)")
points(hkdata$onset.secondary,rep(0,length(hkdata$onset.secondary)),col="#ff333322",pch=19)

它是一个非常大的数据集,在这里我附加了一部分用于测试。

#data:
date        mtemp   
1   2008-01-01  12.9        
2   2008-01-02  12.9        
3   2008-01-03  14.5        
4   2008-01-04  15.7            
5   2008-01-05  17.0        
6   2008-01-06  17.8    
7   2008-01-07  20.2        
8   2008-01-08  20.8        
9   2008-01-09  21.4        
10  2008-01-10  20.8        
11  2008-01-11  21.4        
12  2008-01-12  22.0 

Here is the graph:

enter image description here

0 个答案:

没有答案