Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. plot(weather.data$date,weather.data$ah1,ylim=c(0,30),type='l',col="red")
  2. par(new=TRUE)
  3. plot(weather.data$date,weather.data$ah2,ylim=c(0,30),type='l',col="green")
  4. par(new=TRUE)
  5. plot(weather.data$date,weather.data$mtemp,ylim=c(0,30),type='l',col="orange")
  6. par(new=TRUE)
  7. plot(weather.data$date,weather.data$mrhumidity,ylim=c(0,100),type='l',col="blue")
  8. par(new=TRUE)
  9. plot(weather.data$date,weather.data$vaporpressure,ylim=c(0,30),type='l',col="grey")
  10. points(hkdata$onset.secondary,rep(0,length(hkdata$onset.secondary)),col="#ff333322",pch=19)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement