Displaying 1 result from an estimated 1 matches for "x4rowsallcol".
2005 Jan 19
3
importing files, columns "invade next column"
...Symbol FB.gn CG.name
a1 <NA> 10006 p53 FBgn0039044 CG10873
a2 <NA> 10007 Gr94a FBgn0041225 CG31280
##
c) importing file with 4 rows, 58 columns; invasion behaviour and a
warning that I don't get in a) although the file is the same for the
first 4 rows
> x4rowsAllCol <- read.table('AllFB4rowsAllCols.txt', fill=T, header=T,
+ row.names=paste('a',1:4, sep=''),
+ as.is=T, nrows=4)
Warning message:
incomplete final line found by readTableHeader on `AllFB4rowsAllCols.txt'
> x4ro...