Displaying 1 result from an estimated 1 matches for "adfl".
Did you mean:
addl
2004 Apr 16
1
as.data.frame.list (PR#6782)
Full_Name: J. R. M. Hosking
Version: 1.9.0
OS: Windows 2000
Submission from: (NULL) (129.34.20.23)
Browsing the code of as.data.frame.list, I see
cn[m] <- paste("..adfl.", cn[m], sep = "")
and 5 lines later
names(x) <- sub("^..adfl.", "", names(x))
It looks as though the latter should be
names(x) <- sub("^\\.\\.adfl\\.", "", names(x))
This won't often matter, but perhaps one day somebody may...