Represents on object that was read from or can be written to
an R data file.
SystemObject Extreme.Data.RRObject
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public abstract class RObject : IDataObject<RObject>
Public MustInherit Class RObject
Implements IDataObject(Of RObject)
public ref class RObject abstract : IDataObject<RObject^>
[<AbstractClassAttribute>]
type RObject =
class
interface IDataObject<RObject>
end
The RObject type exposes the following members.
| Name | Description |
---|
 | RObject |
Constructs a new R object.
|
Top
| Name | Description |
---|
 | 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.
|
Top
| Name | Description |
---|
 | AsMatrixT |
Attempts to convert the object to a matrix with the specified element type.
|
 | AsVectorT |
Attempts to convert the object to a vector with the specified element type.
|
 | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
 | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
 | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
 | GetType | Gets 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.
|
 | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
 | ToDataFrame |
Converts the object to a data frame.
|
 | ToDataFrameR, C |
Converts the object to a data frame.
|
 | ToMatrixT |
Converts the object to a matrix with the specified element type.
|
 | ToString | Returns a string that represents the current object. (Inherited from Object.) |
 | ToVectorT |
Converts the object to a vector with the specified element type.
|
Top
| Name | Description |
---|
  | Null |
Represents an R object without a value.
|
Top
Reference