RType Enumeration
Enumerates the types of R objects that may be stored in a file.
Definition
Namespace: Numerics.NET.Data.R
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 10.1.0
C#
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 10.1.0
public enum RTypeMembers
| NilValue | 0 | A null value. |
| Symbol | 1 | An item in a pair list. |
| PairList | 2 | A collection of named objects. |
| Char | 9 | A function closure. |
| Logical | 10 | A vector of logical (boolean) values. |
| Integer | 13 | A vector of integers. |
| Real | 14 | A vector of real numbers. |
| Complex | 15 | A vector of complex numbers. |
| String | 16 | A vector of strings. |
| List | 19 | A collection of unnamed objects. |
| S4Object | 25 | An R 'object.' Currently not supported. |
| EndOfList | 254 | An end-of-list marker. |
| Reference | 255 | An internal reference to another object. |