[R] List of lists

mohan.radhakrishnan at polarisft.com mohan.radhakrishnan at polarisft.com
Tue Jul 30 14:05:30 CEST 2013


Hi,
               I am creating a list of 2 lists, one containing filenames
and the other file descriptors.  When I retrieve them I am  unable to close
the file descriptor.

I am getting this error when I try to call close(filedescriptors
[[2]][[1]]).

Error in UseMethod("close") :
  no applicable method for 'close' applied to an object of class "c
('integer', 'numeric')"

print(filedescriptors[[2]][[1]]) seems to be printing individual elements.

Thanks,
Mohan

filelist.array <- function(n){
  cpufile <- list()
  cpufiledescriptors <- list()
  length(cpufile) <- n
  for (i in 1:n) {
    cpufile[[i]] <- paste("output", i, ".txt", sep = "")
	cpufiledescriptors[[i]]<-file( cpufile[[i]], "a" )
  }
    listoffiles <- list(cpufile=cpufile,
cpufiledescriptors=cpufiledescriptors)
	return (listoffiles)
}



#Test function

test.filelist.array <- function() {
	filedescriptors <- filelist.array(3)
    print(filedescriptors[[2]][[1]])
    print(filedescriptors[[2]][[2]])
    print(filedescriptors[[2]][[3]])

}



This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only.  If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately. You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification, distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit us at http://www.polarisFT.com



More information about the R-help mailing list