Reads the data frame with the specified name from a file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static DataFrame<long, string> ReadDataFrame(
string path,
string name
)
Public Shared Function ReadDataFrame (
path As String,
name As String
) As DataFrame(Of Long, String)
public:
static DataFrame<long long, String^>^ ReadDataFrame(
String^ path,
String^ name
)
static member ReadDataFrame :
path : string *
name : string -> DataFrame<int64, string>
Parameters
- path
- Type: SystemString
The file to read from. - name
- Type: SystemString
The name of the data frame to read.
Return Value
Type:
DataFrameInt64,
StringThe data frame that was read from the file.
Reference