search for: updated_cfl_rad_files

Displaying 4 results from an estimated 4 matches for "updated_cfl_rad_files".

2010 Nov 10
1
Extending a plot in a loop
...days in one graph. I tried to use for loop but only the last data remains in the program memory, I don`t know how to plot each day`s data continusly after the others(or how to extending the x axis.) Would you please help me with it? This a plot for one day: radiation.data <-read.table("C:/updated_CFL_Rad_files/2008/RAD_2008_JD101_0410.dat", header = TRUE,sep = ",", quote = " ", dec = ".") > attach(radiation.data) The following object(s) are masked from 'radiation.data (position 3)': Batt_avg, Batt_st, Day, Hour, Kdown_avg, Kdown_st, LW_in, LW_in_st,...
2010 Nov 16
1
Extending a plot in a loop (With attachment)
...days in one graph. I tried to use for loop but only the last data remains in the program memory, I don`t know how to plot each day`s data continusly after the others(or how to extending the x axis.) Would you please help me with it? This a plot for one day: radiation.data <-read.table("C:/updated_CFL_Rad_files/2008/RAD_2008_JD101_0410.dat", header = TRUE,sep = ",", quote = " ", dec = ".") > attach(radiation.data) The following object(s) are masked from 'radiation.data (position 3)': Batt_avg, Batt_st, Day, Hour, Kdown_avg, Kdown_st, LW_in, LW_in_st,...
2010 Nov 09
2
Merge Data
Hello; I have a problem merging data sets. I use this command: FileNames <- list.files(path="C:/updated_CFL_Rad_files/2007/11", full.names=TRUE) > dataMerge <- data.frame() > for(f in FileNames){ + ReadInMerge <- read.csv(file=f, header=T, na.strings="NULL") + dataMerge <- merge(dataMerge, ReadInMerge,all=T) + + } and an error occurs.The size of the data is about 7.5 Mb, I don...
2010 Nov 04
1
Plotting a vector data
Hi; I have 30 data sets and I managed to take the average of a variable in each set and put them in a vector like variable(It contains NaN data as well). x<- matrix( list.files("C:/updated_CFL_Rad_files/2007/11",full=TRUE)) for(i in 1:30) { radiation.data <-read.table(x[i], header = TRUE,sep = ",", quote = " ", dec = ".") attach(radiation.data) names(radiation.data) mean.radiation[i]<- mean(PAR_avg,na.rm = TRUE) } How can I plot this vecto...