exit | break and force quit of current R# session without confirm |
exists | Is an Object Defined?Look for an R object of the given name and possibly return it |
set | Assign a Value to a NameAssign a value to a name in an environment. |
get | Return the Value of a Named ObjectSearch by name for an object (get) or zero or more objects (mget). |
object.size | Report the Space Allocated for an ObjectProvides an estimate of the memory that is being used to store an R# object. Exactly which parts of the memory allocation should be attributed to which object is not clear-cut. This function merely provides a rough indication: it should be reasonably accurate for atomic vectors, but does not detect if elements of a list are shared, for example. (Sharing amongst elements of a character vector is taken into account, but not that between character vectors in a single object.) The calculation Is Of the size Of the Object, And excludes the space needed To store its name In the symbol table. Associated space(e.g., the environment of a function And what the pointer in a EXTPTRSXP points to) Is Not included in the calculation. Object sizes are larger On 64-bit builds than 32-bit ones, but will very likely be the same On different platforms With the same word length And pointer size. |
do.call | Execute a Function Call
|
traceback | Get and Print Call StacksBy default traceback() prints the call stack of the last uncaught error, i.e., the sequence of calls that lead to the error. This is useful when an error occurs with an unidentifiable error message. It can also be used to print the current stack or arbitrary lists of deparsed calls. |
lockBinding | Binding and Environment Locking, Active Bindings |
unlockBinding | |
export | get a .NET type model from a given VB.NET type full name |
type | get exported type by name |
rm | Remove Objects from a Specified Environmentremove and rm can be used to remove objects. These can be specified successively as character strings, or in the character vector list, or through a combination of both. All objects thus specified will be removed. + If envir Is NULL Then the currently active environment Is searched first. + If inherits Is TRUE Then parents Of the supplied directory are searched until a variable With the given name Is encountered. A warning Is printed For Each variable that Is Not found. |