Displaying 1 result from an estimated 1 matches for "bonaf".
Did you mean:
bona
2005 Oct 21
1
read.fwf(...,header=TRUE,...) (PR#8236)
Full_Name: Giovanni Bonafe'
Version: 2.2.0
OS: Linux
Submission from: (NULL) (195.62.164.225)
If the file "example.dat" is like this:
aaa bbb ccc
3.4 1.2 5.6
4.6 10 32
667 343 1.7
With the older 1.9.1, as expected:
> data<-read.fwf(file = "example.dat",widths=c(3,4,4),header=TRUE)
> da...