RObject Class

Represents on object that was read from or can be written to an R data file.

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public abstract class RObject : IDataObject<RObject>
Inheritance
Object  →  RObject
Implements
IDataObject<RObject>

Constructors

RObject Constructs a new R object.

Properties

Attributes Gets the collection of attributes associated with the object.
Children Gets the sequence of children of the object.
Class Gets the class of the object.
Classes Gets the class of the object.
ElementType Gets the element type of the object.
HasAttributes Gets whether the object has attributes associated with it.
HasChildren Gets whether the object has child objects.
HasTag Gets whether the object has a tag associated with it.
IsDataFrame Gets whether the object can be converted to a vector.
IsMatrix Gets whether the object can be converted to a matrix.
IsObject Gets whether the object is an R object (with a class attribute).
IsVector Gets whether the object can be converted to a data frame.
Kind Gets the kind of object.
RType Gets the R type of the object.
Tag Gets the tag associated with the objet.

Methods

AsMatrix<T> Attempts to convert the object to a matrix with the specified element type.
AsVector<T> Attempts to convert the object to a vector with the specified element type.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
GetValue Gets the value of the object.
HasClass Returns whether the object is of the specified class.
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToDataFrame() Converts the object to a data frame.
ToDataFrame<R, C>() Converts the object to a data frame.
ToMatrix<T> Converts the object to a matrix with the specified element type.
ToStringReturns a string that represents the current object.
(Inherited from Object)
ToVector<T> Converts the object to a vector with the specified element type.

Fields

Null Represents an R object without a value.

See Also