as.character.Object | R Documentation |
Gets a character string representing the object. In the class Object, this method simply returns the class name and the hashCode() value of the object.
## S3 method for class 'Object'
as.character(x, ...)
... |
Not used. |
Returns a character
string representation of the Object. By default it
is "{class name}: {hash code}".
Henrik Bengtsson
For more information see Object
.
obj <- Object()
as.character(obj) # "Object: 0x000000000ab6a7a8"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.