Displaying 1 result from an estimated 1 matches for "gas_t".
Did you mean:
gas_o
2012 Feb 17
1
Plotting issue
...of files are
80
for ( i in 1:file_o){
#get data here I get
Lat_o<-
Lon_o <-
time_o<-
gas_o<-
}
file_t< list.files(path=' ', pattern="fg.nc")
for (j in 1:file_t){
#get data here I get
Lat_t<-
Lon_t <-
time_t<-
gas_t<-
}
nobs<- length(Lat_o)
for (k in 1:nobs){
# here it does some calculation and get some value which is " gas_new "
}
now I would like to plot this data for every month according to my
observation data
############ plotting##############
year <- 2005:2008
month<...