Reads a data frame from a Stata
file.
Namespace:
Extreme.Data.Stata
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static DataFrame<R, C> ReadDataFrame<R, C>(
string path
)
Public Shared Function ReadDataFrame(Of R, C) (
path As String
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
static DataFrame<R, C>^ ReadDataFrame(
String^ path
)
static member ReadDataFrame :
path : string -> DataFrame<'R, 'C>
Parameters
- path
- Type: SystemString
The path to the data file.
Type Parameters
- R
- C
Return Value
Type:
DataFrameR,
CA data frame containing the data in the file
specified by
path.
Reference