Rdata File.Read Data Frames Method
Definition
Namespace: Numerics.NET.Data.R
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Overload List
Read | Reads the specified data frames from a stream. |
Read | Reads the specified data frames from a file. |
Read | Reads the specified data frames from a stream. |
Read | Reads the specified data frames from a file. |
ReadDataFrames(Stream, IEnumerable<String>)
Reads the specified data frames from a stream.
public static Dictionary<string, DataFrame<long, string>> ReadDataFrames(
Stream stream,
IEnumerable<string> names
)
Parameters
- stream Stream
- The stream to read from.
- names IEnumerable<String>
- A sequence of names of the data frames to read.
Return Value
Dictionary<String, DataFrame<Int64, String>>A dictionary containing the data frames read from the stream using their name as the key.
ReadDataFrames<R, C>(Stream, IEnumerable<String>)
Reads the specified data frames from a stream.
public static Dictionary<string, DataFrame<R, C>> ReadDataFrames<R, C>(
Stream stream,
IEnumerable<string> names
)
Parameters
- stream Stream
- The stream to read from.
- names IEnumerable<String>
- A sequence of names of the data frames to read.
Type Parameters
- R
- C
Return Value
Dictionary<String, DataFrame<R, C>>A dictionary containing the data frames read from the stream using their name as the key.
ReadDataFrames(String, IEnumerable<String>)
Reads the specified data frames from a file.
public static Dictionary<string, DataFrame<long, string>> ReadDataFrames(
string path,
IEnumerable<string> names
)
Parameters
- path String
- The file to read from.
- names IEnumerable<String>
- A sequence of names of the data frames to read.
Return Value
Dictionary<String, DataFrame<Int64, String>>A dictionary containing the data frames read from the file using their name as the key.
ReadDataFrames<R, C>(String, IEnumerable<String>)
Reads the specified data frames from a file.
public static Dictionary<string, DataFrame<R, C>> ReadDataFrames<R, C>(
string path,
IEnumerable<string> names
)
Parameters
- path String
- The file to read from.
- names IEnumerable<String>
- A sequence of names of the data frames to read.
Type Parameters
- R
- C
Return Value
Dictionary<String, DataFrame<R, C>>A dictionary containing the data frames read from the file using their name as the key.