Skip to content

Commit

Permalink
updated weather comps for color consistency and labels
Browse files Browse the repository at this point in the history
  • Loading branch information
geneorama committed Jun 29, 2017
1 parent f3bd604 commit 85aa0c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/archive/noaa_daily_vs_hourly.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ merged
##------------------------------------------------------------------------------
merged[,plot(max_temp ~ date, col = "blue", type = "o")]
merged[,points(TMAX ~ date, col="orange", type="o")]
merged[,plot(max_temp ~ TMAX)]
merged[,plot(max_temp ~ TMAX, xlab = "daily", ylab = "hourly aggregated")]
abline(0,1)

##------------------------------------------------------------------------------
## COMPARISON
## PRCP COMPARISON
##------------------------------------------------------------------------------
merged[,plot(precip ~ date, col = "blue", type = "o")]
merged[,plot(PRCP ~ date, col = "orange", type = "o")]
merged[,points(precip ~ date, col = "blue", type = "o")]
# merged[,points(precip6 ~ date, col = "red", type = "o")]
merged[,points(PRCP ~ date, col = "orange", type = "o")]


merged[,plot(precip ~ PRCP)]
Expand All @@ -53,5 +53,5 @@ merged[,points(cumsum(PRCP) ~ date, col = "orange", type = "o")]
##------------------------------------------------------------------------------
merged[,plot(wind_ave ~ date, col = "blue", type = "o")]
merged[,points(AWND ~ date, col = "orange", type = "o")]
merged[,plot(wind_ave ~ AWND)]
merged[,plot(wind_ave ~ AWND, xlab = "daily", ylab = "hourly aggregated")]
abline(0,1)

0 comments on commit 85aa0c8

Please sign in to comment.