Displaying 1 result from an estimated 1 matches for "gas_new".
Did you mean:
has_new
2012 Feb 17
1
Plotting issue
...}
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<- ("jan","Feb","March","".........."Dec")
for ( y in year)
for (m in month)
h...