RdataFile.ReadAllDataFrames Method

Definition

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

Overload List

ReadAllDataFrames(Stream) Reads all data frames from a stream.
ReadAllDataFrames(String) Reads all data frames from a file.
ReadAllDataFrames<R, C>(Stream) Reads all data frames from a stream.
ReadAllDataFrames<R, C>(String) Reads all data frames from a file.

RdataFile.ReadAllDataFrames(Stream)

Reads all data frames from a stream.
C#
public static Dictionary<string, DataFrame<long, string>> ReadAllDataFrames(
	Stream stream
)

Parameters

stream  Stream
The stream to read from.

Return Value

Dictionary<String, DataFrame<Int64, String>>
A dictionary containing all the data frames read from the stream using their name as the key.

RdataFile.ReadAllDataFrames<R, C>(Stream)

Reads all data frames from a stream.
C#
public static Dictionary<string, DataFrame<R, C>> ReadAllDataFrames<R, C>(
	Stream stream
)

Parameters

stream  Stream
The stream to read from.

Type Parameters

R
C

Return Value

Dictionary<String, DataFrame<R, C>>
A dictionary containing all the data frames read from the stream using their name as the key.

RdataFile.ReadAllDataFrames(String)

Reads all data frames from a file.
C#
public static Dictionary<string, DataFrame<long, string>> ReadAllDataFrames(
	string path
)

Parameters

path  String
The file to read from.

Return Value

Dictionary<String, DataFrame<Int64, String>>
A dictionary containing all the data frames read from the file using their name as the key.

RdataFile.ReadAllDataFrames<R, C>(String)

Reads all data frames from a file.
C#
public static Dictionary<string, DataFrame<R, C>> ReadAllDataFrames<R, C>(
	string path
)

Parameters

path  String
The file to read from.

Type Parameters

R
C

Return Value

Dictionary<String, DataFrame<R, C>>
A dictionary containing all the data frames read from the file using their name as the key.

See Also