Rdata File.Write Method
Definition
Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Overload List
Write(Stream, IDictionary<String, DataFrame<Int64, String>>, Boolean, Boolean)
Writes the data frames in a collection to the specified file.
public static void Write(
Stream stream,
IDictionary<string, DataFrame<long, string>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IDictionary<String, DataFrame<Int64, String>>
- A dictionary that maps names to the data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write(Stream, IEnumerable<DataFrame<Int64, String>>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write(
Stream stream,
IEnumerable<DataFrame<long, string>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IEnumerable<DataFrame<Int64, String>>
- A sequence of data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write<T>(Stream, IDictionary<String, Matrix<T>>, Boolean, Boolean)
Writes the matrices in a collection to the specified file.
public static void Write<T>(
Stream stream,
IDictionary<string, Matrix<T>> matrices,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the matrices to.
- matrices IDictionary<String, Matrix<T>>
- A dictionary that maps names to the matrices to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(Stream, IDictionary<String, Vector<T>>, Boolean, Boolean)
Writes the vectors in a collection to the specified file.
public static void Write<T>(
Stream stream,
IDictionary<string, Vector<T>> vectors,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the vectors to.
- vectors IDictionary<String, Vector<T>>
- A dictionary that maps names to the vectors to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<T>(Stream, IEnumerable<Matrix<T>>, Boolean, Boolean)
Writes a sequence of matrices to the specified file.
public static void Write<T>(
Stream stream,
IEnumerable<Matrix<T>> matrices,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the matrices to.
- matrices IEnumerable<Matrix<T>>
- A sequence of matrices to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(Stream, IEnumerable<Vector<T>>, Boolean, Boolean)
Writes a sequence of vectors to the specified file.
public static void Write<T>(
Stream stream,
IEnumerable<Vector<T>> vectors,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the vectors to.
- vectors IEnumerable<Vector<T>>
- A sequence of vectors to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<R, C>(Stream, IDictionary<String, DataFrame<R, C>>, Boolean, Boolean)
Writes the data frames in a collection to the specified file.
public static void Write<R, C>(
Stream stream,
IDictionary<string, DataFrame<R, C>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IDictionary<String, DataFrame<R, C>>
- A dictionary that maps names to the data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Write<R, C>(Stream, IEnumerable<DataFrame<R, C>>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write<R, C>(
Stream stream,
IEnumerable<DataFrame<R, C>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IEnumerable<DataFrame<R, C>>
- A sequence of data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Write(String, IDictionary<String, DataFrame<Int64, String>>, Boolean, Boolean)
Writes the data frames in a collection to the specified file.
public static void Write(
string path,
IDictionary<string, DataFrame<long, string>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IDictionary<String, DataFrame<Int64, String>>
- A dictionary that maps names to the data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write(String, IEnumerable<DataFrame<Int64, String>>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write(
string path,
IEnumerable<DataFrame<long, string>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IEnumerable<DataFrame<Int64, String>>
- A sequence of data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write<T>(String, IDictionary<String, Matrix<T>>, Boolean, Boolean)
Writes the matrices in a collection to the specified file.
public static void Write<T>(
string path,
IDictionary<string, Matrix<T>> matrices,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the matrices to.
- matrices IDictionary<String, Matrix<T>>
- A dictionary that maps names to the matrices to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(String, IDictionary<String, Vector<T>>, Boolean, Boolean)
Writes the vectors in a collection to the specified file.
public static void Write<T>(
string path,
IDictionary<string, Vector<T>> vectors,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the vectors to.
- vectors IDictionary<String, Vector<T>>
- A dictionary that maps names to the vectors to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<T>(String, IEnumerable<Matrix<T>>, Boolean, Boolean)
Writes a sequence of matrices to the specified file.
public static void Write<T>(
string path,
IEnumerable<Matrix<T>> matrices,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the matrices to.
- matrices IEnumerable<Matrix<T>>
- A sequence of matrices to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(String, IEnumerable<Vector<T>>, Boolean, Boolean)
Writes a sequence of vectors to the specified file.
public static void Write<T>(
string path,
IEnumerable<Vector<T>> vectors,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the vectors to.
- vectors IEnumerable<Vector<T>>
- A sequence of vectors to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<R, C>(String, IDictionary<String, DataFrame<R, C>>, Boolean, Boolean)
Writes the data frames in a collection to the specified file.
public static void Write<R, C>(
string path,
IDictionary<string, DataFrame<R, C>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IDictionary<String, DataFrame<R, C>>
- A dictionary that maps names to the data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Write<R, C>(String, IEnumerable<DataFrame<R, C>>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write<R, C>(
string path,
IEnumerable<DataFrame<R, C>> dataFrames,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IEnumerable<DataFrame<R, C>>
- A sequence of data frames to write.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Write(Stream, DataFrame<Int64, String>, String, Boolean, Boolean)
Writes a data frame to the specified file.
public static void Write(
Stream stream,
DataFrame<long, string> dataFrame,
string name = "df",
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frame to.
- dataFrame DataFrame<Int64, String>
- The data frame to write.
- name String (Optional)
- A name for the data frame. The default is df.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write(Stream, IEnumerable<DataFrame<Int64, String>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write(
Stream stream,
IEnumerable<DataFrame<long, string>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IEnumerable<DataFrame<Int64, String>>
- A sequence of data frames to write.
- names IEnumerable<String>
- A sequence of corresponding names for the data frames.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write<T>(Stream, Matrix<T>, String, Boolean, Boolean)
Writes a matrix to the specified file.
public static void Write<T>(
Stream stream,
Matrix<T> matrix,
string name = "matrix",
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the matrix to.
- matrix Matrix<T>
- The matrix to write.
- name String (Optional)
- A name for the matrix. The default is matrix.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrix.
Write<T>(Stream, Vector<T>, String, Boolean, Boolean)
Writes a vector to the specified file.
public static void Write<T>(
Stream stream,
Vector<T> vector,
string name = "vector",
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the vector to.
- vector Vector<T>
- The vector to write.
- name String (Optional)
- A name for the vector. The default is vector.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vector.
Write<T>(Stream, IEnumerable<Matrix<T>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of matrices to the specified file.
public static void Write<T>(
Stream stream,
IEnumerable<Matrix<T>> matrices,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the matrices to.
- matrices IEnumerable<Matrix<T>>
- A sequence of matrices to write.
- names IEnumerable<String>
- A sequence of corresponding names for the matrices.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(Stream, IEnumerable<Vector<T>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of vectors to the specified file.
public static void Write<T>(
Stream stream,
IEnumerable<Vector<T>> vectors,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the vectors to.
- vectors IEnumerable<Vector<T>>
- A sequence of vectors to write.
- names IEnumerable<String>
- A sequence of corresponding names for the vectors.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<R, C>(Stream, DataFrame<R, C>, String, Boolean, Boolean)
Writes a data frame to the specified file.
public static void Write<R, C>(
Stream stream,
DataFrame<R, C> dataFrame,
string name = "df",
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frame to.
- dataFrame DataFrame<R, C>
- The data frame to write.
- name String (Optional)
- A name for the data frame. The default is df.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Write<R, C>(Stream, IEnumerable<DataFrame<R, C>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write<R, C>(
Stream stream,
IEnumerable<DataFrame<R, C>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream to write the data frames to.
- dataFrames IEnumerable<DataFrame<R, C>>
- A sequence of data frames to write.
- names IEnumerable<String>
- A sequence of corresponding names for the data frames.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Write(String, DataFrame<Int64, String>, String, Boolean, Boolean)
Writes a data frame to the specified file.
public static void Write(
string path,
DataFrame<long, string> dataFrame,
string name = "df",
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frame to.
- dataFrame DataFrame<Int64, String>
- The data frame to write.
- name String (Optional)
- A name for the data frame. The default is df.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write(String, IEnumerable<DataFrame<Int64, String>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write(
string path,
IEnumerable<DataFrame<long, string>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IEnumerable<DataFrame<Int64, String>>
- A sequence of data frames to write.
- names IEnumerable<String>
- A sequence of corresponding names for the data frames.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Write<T>(String, Matrix<T>, String, Boolean, Boolean)
Writes a matrix to the specified file.
public static void Write<T>(
string path,
Matrix<T> matrix,
string name = "matrix",
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the matrix to.
- matrix Matrix<T>
- The matrix to write.
- name String (Optional)
- A name for the matrix. The default is matrix.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrix.
Write<T>(String, Vector<T>, String, Boolean, Boolean)
Writes a vector to the specified file.
public static void Write<T>(
string path,
Vector<T> vector,
string name = "vector",
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the vector to.
- vector Vector<T>
- The vector to write.
- name String (Optional)
- A name for the vector. The default is vector.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vector.
Write<T>(String, IEnumerable<Matrix<T>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of matrices to the specified file.
public static void Write<T>(
string path,
IEnumerable<Matrix<T>> matrices,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the matrices to.
- matrices IEnumerable<Matrix<T>>
- A sequence of matrices to write.
- names IEnumerable<String>
- A sequence of corresponding names for the matrices.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the matrices.
Write<T>(String, IEnumerable<Vector<T>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of vectors to the specified file.
public static void Write<T>(
string path,
IEnumerable<Vector<T>> vectors,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the vectors to.
- vectors IEnumerable<Vector<T>>
- A sequence of vectors to write.
- names IEnumerable<String>
- A sequence of corresponding names for the vectors.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- T
- The type of the elements of the vectors.
Write<R, C>(String, DataFrame<R, C>, String, Boolean, Boolean)
Writes a data frame to the specified file.
public static void Write<R, C>(
string path,
DataFrame<R, C> dataFrame,
string name = "df",
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frame to.
- dataFrame DataFrame<R, C>
- The data frame to write.
- name String (Optional)
- A name for the data frame. The default is df.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Write<R, C>(String, IEnumerable<DataFrame<R, C>>, IEnumerable<String>, Boolean, Boolean)
Writes a sequence of data frames to the specified file.
public static void Write<R, C>(
string path,
IEnumerable<DataFrame<R, C>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Parameters
- path String
- The file to write the data frames to.
- dataFrames IEnumerable<DataFrame<R, C>>
- A sequence of data frames to write.
- names IEnumerable<String>
- A sequence of corresponding names for the data frames.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.