Displaying 1 result from an estimated 1 matches for "punc".
Did you mean:
func
2007 May 31
1
plotting variable sections of hourly time series data using plot.zoo
...000 0.012
0.223 0.235 0.03 0.56 74.72 0.94 736.37
#With help of read.table I got the data into R :
DF <- read.table(file=fn,header=FALSE,skip=2)
#Substitute the header:
names(DF) <-
c("year","month","day","hour","FN","Punc","Pcor","Pmelt","ETP","ETR","RS","RI","RB","Rtot","Ssnow","SI","SSM","SUZ","SLZ")
#Create datetime vector
library(chron)
DF$datetime <- with(DF,chron(paste(mon...