Displaying 1 result from an estimated 1 matches for "foxglov".
Did you mean:
foxglove
2004 Apr 16
1
as.data.frame.list (PR#6782)
...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 type something like
as.data.frame(list(row.names=1:2,foxglove=3:4,toadflax=5:6))
(R 1.9.0, Windows binary from CRAN)