RdsFile.ReadDataFrame Method

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadDataFrame(Stream) Reads a data frame from a stream in R's RDS format.
ReadDataFrame(String) Reads a data frame from an R file in RDS format.

RdsFile.ReadDataFrame(Stream)

Reads a data frame from a stream in R's RDS format.
C#
public static DataFrame<long, string> ReadDataFrame(
	Stream stream
)

Parameters

stream  Stream
A stream.

Return Value

DataFrame<Int64, String>
The data frame that was read from the stream pointed to by stream.

RdsFile.ReadDataFrame(String)

Reads a data frame from an R file in RDS format.
C#
public static DataFrame<long, string> ReadDataFrame(
	string path
)

Parameters

path  String
The path to the file.

Return Value

DataFrame<Int64, String>
The data frame that was read from the file pointed to by path.

Exceptions

FileNotFoundException The specified file does not exist.

See Also