search for: funkyfile

Displaying 2 results from an estimated 2 matches for "funkyfile".

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 29
1
multiple plots and looping assistance requested (single plot)
...ots. Is it possible to print the contents of the 3 >>>columns subset in one single plot? If so, then how would that be done? >>> >>>I would like to thank you in advance. >>> >>>Irucka Embry >>> >>> >>> >>>temp = read..funkyfile("seasonalFluxComparisonDataSet.csv", "station_id", header=TRUE, >sep="\t") >>>temp1<-lapply(temp,function(x) {x1<-x[,colSums(is.na(x))!=nrow(x)]; if(is.data.frame(x1)) >>>x1[complete..cases(x1),] else x1[complete.cases(x1)]}) >>>#...