search for: a_and_b

Displaying 2 results from an estimated 2 matches for "a_and_b".

Did you mean: _and_
2005 Jul 27
1
make.names() does not return what is expected
...w if it's only me, but I can't get make.names() transform '_' in the way it is expected when I add the "allow_" option. A simple example trying to replicate the example provided in the help page gives: -----8<--------------- > make.names(c("a and b", "a_and_b"), unique=TRUE, allow_=FALSE) [1] "a and b." "a_and_b" -----8<--------------- When the example says it should be: -----8<--------------- make.names(c("a and b", "a_and_b"), unique=TRUE, allow_=FALSE) # "a.and.b" "a.and.b.1"...
2004 May 24
3
error in make.names docs (PR#6912)
Full_Name: Mike Miller Version: 1.9.0 OS: win2000 Submission from: (NULL) (134.68.121.109) The docs for make.names imply that the result of make.names(c("a and b", "a_and_b"), unique=TRUE) should be "a.and.b" "a.and.b.1" when it is actually "a.and.b" "a_and_b" The docs do not reflect this very major change in behavior from 1.8.x to 1.9.0. This change causes numerous R codes to fail in senarios like the f...