Displaying 1 result from an estimated 1 matches for "hydrodataoutput".
2008 Aug 12
2
Parsing array data
Hi,
I read in csv files with the following code:
res <- vector(mode="list",length=3)
for(i in 1: length(res))
res[[i]]<-read.csv(file=paste("/Users/markaltaweel/Desktop/Output/HydroDataOutput",i,".csv",sep=""),header=T,sep=",")
This allows me to load the data into an array of length 3, with the res array containing my data from the csv files.
I would like to parse the data in the res array so that I can access my specific data columns. For instance,...