| rcheology {rcheology} | R Documentation | 
Data on objects from current and previous versions of R
Description
A data frame with every function (and other object) in versions of R from 1.0.1 onwards. Variables are:
-  package: package the object comes from
-  name: name of the object
-  Rversion: version of R as major.minor.patch
-  type: Result of callingtypeof()on the object
-  class:class()of the object, separated by slashes if there are multiple classes.
-  exported:TRUEif the object name was found ingetNamespaceExports(). True for anything in the "base" package.NAif the package does not have a namespace (e.g. "datasets" in early versions).
-  hidden:TRUEif the object name starts with".". These objects are not reported byls().
-  S4generic:TRUEif the object is an S4 generic according tomethods::isGeneric(). Note that in earlier versions of rcheology, this column was calledgeneric.
-  priority:"base"for base packages,"recommended"for recommended packages.NAfor earlier versions of R (pre 1.6.0) when the priority concept did not exist.
-  args: the arguments of the function, or NA for non-functions