Skip to content
Prev 279808 / 398506 Next

read.table question

On 08/12/2011 3:28 PM, Pavan G wrote:
You didn't name your arguments, so positional matching is used.  Your 
call is equivalent to

read.table(file = "plink.txt", header = T)

In most users' sessions, that's the same as

read.table(file = "plink.txt", header = TRUE)

and I'd guess that's true about yours.


Duncan Murdoch