Rdata File.Read Data Frame 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
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. |
ReadDataFrame(Stream)
Reads a data frame from the specified file.
public static DataFrame<long, string> ReadDataFrame(
Stream stream
)
Parameters
- stream Stream
- The stream to read from.
Return Value
DataFrame<Int64, String>The data frame that was read from the stream.
ReadDataFrame<R, C>(Stream)
Reads a data frame from the specified file.
public static DataFrame<R, C> ReadDataFrame<R, C>(
Stream stream
)
Parameters
- stream Stream
- The stream to read from.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
DataFrame<R, C>The data frame that was read from the stream.
ReadDataFrame(String)
Reads a data frame from the specified file.
public static DataFrame<long, string> ReadDataFrame(
string path
)
Parameters
- path String
- The file to read from.
Return Value
DataFrame<Int64, String>The data frame that was read from the file.
ReadDataFrame<R, C>(String)
Reads a data frame from the specified file.
public static DataFrame<R, C> ReadDataFrame<R, C>(
string path
)
Parameters
- path String
- The file to read from.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
DataFrame<R, C>The data frame that was read from the file.
ReadDataFrame(Stream, String)
Reads the data frame with the specified name from a stream.
public static DataFrame<long, string> ReadDataFrame(
Stream stream,
string name
)
Parameters
Return Value
DataFrame<Int64, String>The data frame that was read from the stream.
ReadDataFrame<R, C>(Stream, String)
Reads the data frame with the specified name from a stream.
public static DataFrame<R, C> ReadDataFrame<R, C>(
Stream stream,
string name
)
Parameters
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
DataFrame<R, C>The data frame that was read from the stream.
ReadDataFrame(String, String)
Reads the data frame with the specified name from a file.
public static DataFrame<long, string> ReadDataFrame(
string path,
string name
)
Parameters
Return Value
DataFrame<Int64, String>The data frame that was read from the file.
ReadDataFrame<R, C>(String, String)
Reads the data frame with the specified name from a file.
public static DataFrame<R, C> ReadDataFrame<R, C>(
string path,
string name
)
Parameters
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
DataFrame<R, C>The data frame that was read from the file.