read.columns(file, required.col=NULL, text.to.search="", sep="\t", quote="\"", skip=0, fill=TRUE, blank.lines.skip=TRUE, comment.char="", allowEscapes=FALSE, ...)TRUE then in case the rows have unequal length, blank fields are implicitly added.TRUE blank lines in the input are ignored.read.table, excluding the following
which are reserved and cannot be set by the user:
header, col.names, check.names and colClasses.read.table in the base package.
It uses required.col and text.to.search to set up the colClasses argument of read.table.Note the following arguments of read.table are used by read.columns
and therefore cannot be set by the user:
header, col.names, check.names and colClasses.
This function is used by read.maimages.
read.maimages, read.table.An overview of LIMMA functions for reading data is given in 03.ReadingData.