How one can make a list of all functions in R's base package which are given as Primitives like abs, sqrt cumsum (but not log) ? Thanks a lot Diethelm Wuertz
On 4/9/2006 5:46 AM, Diethelm Wuertz wrote:> How one can make a list of all functions in R's base > package which are given as Primitives like abs, sqrt > cumsum (but not log) ?There's an is.primitive() test function; you just need to get all objects, and test them one by one. Duncan Murdoch