Rdata File.Read All Data Frames 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 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. |
ReadAllDataFrames(Stream)
Reads all data frames from a stream.
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.
ReadAllDataFrames<R, C>(Stream)
Reads all data frames from a stream.
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.
ReadAllDataFrames(String)
Reads all data frames from a file.
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.
ReadAllDataFrames<R, C>(String)
Reads all data frames from a file.
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.