search for: load_00600_f

Displaying 3 results from an estimated 3 matches for "load_00600_f".

Did you mean: load_00600_w
2013 Mar 29
1
multiple plots and looping assistance requested (single plot)
...gle plot) > >HI Irucka, >No problem. Thanks for the dput(data), but it seems like the data is not read correctly. It still has comma >as separator. > >str(temp) >List of 5 > $ 02143500,,:'data.frame': 17 obs. of 1 variable: > ..$ CYEAR_Decimal.load_00600_W.load_00600_F: Factor w/ 17 levels ",,","2000.875,,4202.7437226",..: 2 >3 4 5 6 7 8 9 10 11 ... > $ 02169000,,:'data.frame': 17 obs. of 1 variable: > ..$ CYEAR_Decimal.load_00600_W.load_00600_F: Factor w/ 17 levels ",,","2000.875,,227675.73764",..: 2...
2013 Mar 07
5
multiple plots and looping assistance requested (revised codes)
Hi Irucka, I tried it and was able to plot it without any errors.? Here, your code indicates you need two lines. temper[[i]][1] ?temper[[1]][1] # which is the column 1. ? Month 1???? 1 2???? 2 3???? 3 ?temper[[1]][2] #? Data1 #1?? 1.5 #2? 12.3 #3? 11.4 Suppose I use names(temper) instead of seq_along(temper) pdf("irucka.pdf") ?lapply(names(temper),function(i)
2013 Mar 05
2
multiple plots and looping assistance requested
...t;(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)(\\w)$", "", x, perl=TRUE) 2) I am attempting to make graphs of the station_id_Timeseries (x) in chronological order from 2000_4_OND to 2004_2_AMJ (there may be as as few as 2 or as many as 16) versus the load_00600_W (y1) and the load_00600_F (y2). There will be 2 plots for each x (x versus y1 & x versus y2). The data used here comes from a .csv file where there are about 100 sites and each site has it own unique station_id. In the end there should be a .pdf plot for each site. This is the full R code that I have written to proces...