Displaying 1 result from an estimated 1 matches for "t_rpup".
2007 Oct 02
2
Problem loading a txt file as a data.frame
Hello all,
I know that this is a terribly banal question but I cannot seem to solve
it.
I am trying to load in data from a tab-delimited text file. Some
columns are mixed text-numbers and other columns are strictly numbers.
Some cells are blank.
My command is:
>MDMT_RPup <- read.table("GCRMA_MDM-T_RPup.txt", header=T,
sep="\t", row.names=NULL, fill=TRUE)
The problem is that this text file should load with 118 rows, 7 columns
of data. But when I execute the following command:
>dim(MDMT_RPup)
I only get:
>40 7
Other similarly generat...