Reads all data frames from a file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, DataFrame<long, string>> ReadAllDataFrames(
string path
)
Public Shared Function ReadAllDataFrames (
path As String
) As Dictionary(Of String, DataFrame(Of Long, String))
public:
static Dictionary<String^, DataFrame<long long, String^>^>^ ReadAllDataFrames(
String^ path
)
static member ReadAllDataFrames :
path : string -> Dictionary<string, DataFrame<int64, string>>
Parameters
- path
- Type: SystemString
The file to read from.
Return Value
Type:
DictionaryString,
DataFrameInt64,
StringA dictionary containing all the data frames
read from the file using their name as the key.
Reference