Hi, 

I would like to create a list of data frames that I could access via index
manipulation. An array pointer of dataframe...

 for (i in 1:length(InputFilelist))
 {
    # create data.frame
    temp <- read.table (file = InputFilelist[i] , header = T, skip = 4)
    # append data.frame 
    InputDataFrame <<- list(InputDataFrame,temp)
 }

Thanks in advance !
Pascal Rheaume


        [[alternative HTML version deleted]]

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to