Rdata
            
            
            
            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 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.