search for: allfunc

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

Did you mean: callfunc
2013 Apr 08
0
A categorized list of R functions
...ize functions 2.R # Franklin Bretschneider # after R-help, R. Michael Weylandt # 08-04-2013 # this version produces a tab-delimited text file with # the columns: (search) pattern; (in which) package and function (name). # ====================================================================== allfuncs = unlist(sapply(search(), ls)) n = length(allfuncs) allnames = names(allfuncs) package.names = substr(allnames, start=9, stop=nchar(allnames)) allfuncs = cbind(package.names, allfuncs) # which patterns to search: can be customized patterns = c("print", "plot", "axes&quot...
2013 Apr 04
6
categorized complete list of R commands?
every time I read the R release notes for the next release, I see many functions that I had forgotten about and many functions that I never knew existed to begin with. (who knew there were bibtex facilities in R? obviously, everyone except me.) I wonder whether there is a complete list of all R commands (incl the standard packages) somewhere, preferably each with its one-liner AND