search for: allfns

Displaying 1 result from an estimated 1 matches for "allfns".

Did you mean: allans
1997 Apr 28
1
R-beta: An all.names function
I could not find the all.names function in R so I created the enclosed. Comments, criticisms, or changes to a one-liner by creating nested anonymous functions are welcome. I'll try to work out a corresponding all.vars function. ### $Id: allFns.R,v 1.2 1997/04/28 13:08:21 bates Exp $ ### Some replacement functions that are missing in R ### Determine all the names (symbols) occuring in an object. ### This is probably grossly inefficient. all.names <- function (x) { if (mode(x) == "symbol") return(as.character(x))...