Rdata File Class
Contains static methods for
reading from R's .rdata and .rds files.
Definition
Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
public static class RdataFile
- Inheritance
- Object → RdataFile
Remarks
Use the RdataFile class to load or save data frames, vectors, or matrices in files stored in R's RDA or RDATA format.
Methods
Append | Creates a new R data file in .rda format for writing. |
Create | Creates a new R data file in .rda format for writing. |
Open( | Opens an R data file in .rda format. |
Open( | Opens an R data file in .rda format. |
Read | Reads all objects from the data stream. |
Read | Reads all data frames from a stream. |
Read | Reads all data frames from a file. |
Read | Reads all data frames from a stream. |
Read | Reads all data frames from a file. |
Read | Reads all matrices from a stream. |
Read | Reads all matrices from a file. |
Read | Reads all vectors from a stream. |
Read | Reads all vectors from a file. |
Read | Reads a data frame from the specified file. |
Read | Reads a data frame from the specified file. |
Read | Reads the data frame with the specified name from a stream. |
Read | Reads the data frame with the specified name from a file. |
Read | Reads a data frame from the specified file. |
Read | Reads a data frame from the specified file. |
Read | Reads the data frame with the specified name from a stream. |
Read | Reads the data frame with the specified name from a file. |
Read | Reads the specified data frames from a stream. |
Read | Reads the specified data frames from a file. |
Read | Reads the specified data frames from a stream. |
Read | Reads the specified data frames from a file. |
Read | Reads the specified matrices from a stream. |
Read | Reads the specified matrices from a file. |
Read | Reads a matrix from the specified file. |
Read | Reads the matrix with the specified name from a stream. |
Read | Reads a matrix from the specified file. |
Read | Reads the matrix with the specified name from a file. |
Read | Reads a vector from the specified file. |
Read | Reads the vector with the specified name from a stream. |
Read | Reads a vector from the specified file. |
Read | Reads the vector with the specified name from a file. |
Read | Reads the specified vectors from a stream. |
Read | Reads the specified vectors from a file. |
Write( | Writes the data frames in a collection to the specified file. |
Write( | Writes a sequence of data frames to the specified file. |
Write( | Writes the data frames in a collection to the specified file. |
Write( | Writes a sequence of data frames to the specified file. |
Write( | Writes a data frame to the specified file. |
Write( | Writes a sequence of data frames to the specified file. |
Write( | Writes a data frame to the specified file. |
Write( | Writes a sequence of data frames to the specified file. |
Write<T>(Stream, IDictionary<String, Matrix<T>>, Boolean, Boolean) | Writes the matrices in a collection to the specified file. |
Write<T>(Stream, IDictionary<String, Vector<T>>, Boolean, Boolean) | Writes the vectors in a collection to the specified file. |
Write<T>(Stream, IEnumerable<Matrix<T>>, Boolean, Boolean) | Writes a sequence of matrices to the specified file. |
Write<T>(Stream, IEnumerable<Vector<T>>, Boolean, Boolean) | Writes a sequence of vectors to the specified file. |
Write<T>(String, IDictionary<String, Matrix<T>>, Boolean, Boolean) | Writes the matrices in a collection to the specified file. |
Write<T>(String, IDictionary<String, Vector<T>>, Boolean, Boolean) | Writes the vectors in a collection to the specified file. |
Write<T>(String, IEnumerable<Matrix<T>>, Boolean, Boolean) | Writes a sequence of matrices to the specified file. |
Write<T>(String, IEnumerable<Vector<T>>, Boolean, Boolean) | Writes a sequence of vectors to the specified file. |
Write<T>(Stream, Matrix<T>, String, Boolean, Boolean) | Writes a matrix to the specified file. |
Write<T>(Stream, Vector<T>, String, Boolean, Boolean) | Writes a vector to the specified file. |
Write<T>(Stream, IEnumerable<Matrix<T>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of matrices to the specified file. |
Write<T>(Stream, IEnumerable<Vector<T>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of vectors to the specified file. |
Write<T>(String, Matrix<T>, String, Boolean, Boolean) | Writes a matrix to the specified file. |
Write<T>(String, Vector<T>, String, Boolean, Boolean) | Writes a vector to the specified file. |
Write<T>(String, IEnumerable<Matrix<T>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of matrices to the specified file. |
Write<T>(String, IEnumerable<Vector<T>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of vectors to the specified file. |
Write<R, C>(Stream, IDictionary<String, DataFrame<R, C>>, Boolean, Boolean) | Writes the data frames in a collection to the specified file. |
Write<R, C>(Stream, IEnumerable<DataFrame<R, C>>, Boolean, Boolean) | Writes a sequence of data frames to the specified file. |
Write<R, C>(String, IDictionary<String, DataFrame<R, C>>, Boolean, Boolean) | Writes the data frames in a collection to the specified file. |
Write<R, C>(String, IEnumerable<DataFrame<R, C>>, Boolean, Boolean) | Writes a sequence of data frames to the specified file. |
Write<R, C>(Stream, DataFrame<R, C>, String, Boolean, Boolean) | Writes a data frame to the specified file. |
Write<R, C>(Stream, IEnumerable<DataFrame<R, C>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of data frames to the specified file. |
Write<R, C>(String, DataFrame<R, C>, String, Boolean, Boolean) | Writes a data frame to the specified file. |
Write<R, C>(String, IEnumerable<DataFrame<R, C>>, IEnumerable<String>, Boolean, Boolean) | Writes a sequence of data frames to the specified file. |