Displaying 1 result from an estimated 1 matches for "gas_o".
Did you mean:
gas_t
2012 Feb 17
1
Plotting issue
...calculating my requirement I need these both data sets.
The sample calculations are as follows
file_o<-list.files(path=' ', pattern="0.2.text") # total number 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 &q...