Message-ID: <000901c5fbb3$f1617160$733dd080@Victor1>
Date: 2005-12-08T04:57:51Z
From: Eric C. Jennings
Subject: read.table error
Hey, Once again I ask for some quick help.
Here is some code:
ovendata<- read.table("ovens.dat",header=TRUE)
attach(ovendata)
print(ovendata)
Here is the .dat file:
D One Two Three Four Five Seven Eight
1130 254 252 375 384 252 375 876
127 250 250 384 386 251 378 875
Here is the R Console output:
> ovendata<- read.table("ovens.dat",header=TRUE)
Warning message:
incomplete final line found by readTableHeader on 'ovens.dat'
> attach(ovendata)
The following object(s) are masked from ovendata ( position 3 ) :
D Eight Five Four One Seven Three Two
The following object(s) are masked from ovendata ( position 4 ) :
D Eight Five Four One Seven Three Two
The following object(s) are masked from ovendata ( position 5 ) :
Eight Five Four One Seven Three Two
The following object(s) are masked from package:stats :
D
> print(ovendata)
D One Two Three Four Five Seven Eight
1 1130 254 252 375 384 252 375 876
2 127 250 250 384 386 251 378 875
>
I've never seen anything like theis before. What's going on?
Eric