Displaying 1 result from an estimated 1 matches for "designinfo".
2013 Feb 13
1
WriteXLS: 'object not found' error within function
...class(tables))
flush.console()
[1] "list"
At least I would have thought this would have ruled out any scope-related issues. Has anyone else had this problem or have any ideas why it might be happening?
Thanks,
Scott
PS here is the function in full:
makeTables <- function(design, designInfo, oldMatrix, matrix, annot, tableList)
{
rownames(design) <- designInfo[,1]
fit <- lmFit(matrix, design)
fit <- eBayes(fit)
tables<-list()
for (i in 1:length(tableList))
{
table <- makeTable(oldMatrix, matrix, annot, fit, tableList[i])
print(paste(tableList[i], "=", s...