Note: This API is now obsolete.
Reads a data frame from a delimited text file.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the classes in the Extreme.Data package instead.")]
public static DataFrame<long, string> ReadDelimited(
string path,
int startRow = 1,
char[] columnDelimiters = null,
bool mergeConsecutiveDelimiters = false,
CultureInfo culture = null
)
<ObsoleteAttribute("Use the classes in the Extreme.Data package instead.")>
Public Shared Function ReadDelimited (
path As String,
Optional startRow As Integer = 1,
Optional columnDelimiters As Char() = Nothing,
Optional mergeConsecutiveDelimiters As Boolean = false,
Optional culture As CultureInfo = Nothing
) As DataFrame(Of Long, String)
public:
[ObsoleteAttribute(L"Use the classes in the Extreme.Data package instead.")]
static DataFrame<long long, String^>^ ReadDelimited(
String^ path,
int startRow = 1,
array<wchar_t>^ columnDelimiters = nullptr,
bool mergeConsecutiveDelimiters = false,
CultureInfo^ culture = nullptr
)
[<ObsoleteAttribute("Use the classes in the Extreme.Data package instead.")>]
static member ReadDelimited :
path : string *
?startRow : int *
?columnDelimiters : char[] *
?mergeConsecutiveDelimiters : bool *
?culture : CultureInfo
(* Defaults:
let _startRow = defaultArg startRow 1
let _columnDelimiters = defaultArg columnDelimiters null
let _mergeConsecutiveDelimiters = defaultArg mergeConsecutiveDelimiters false
let _culture = defaultArg culture null
*)
-> DataFrame<int64, string>
Parameters
- path
- Type: SystemString
The path to the file. - startRow (Optional)
- Type: SystemInt32
An integer specifying the 1-based row which contains the start of the data. - columnDelimiters (Optional)
- Type: SystemChar
A Char array containing the characters that are used as column delimiters. - mergeConsecutiveDelimiters (Optional)
- Type: SystemBoolean
A Boolean value that indicates whether consecutive column delimiters
are to be treated as a single delimiter. - culture (Optional)
- Type: System.GlobalizationCultureInfo
An CultureInfo that is used to interpret the numerical data.
Return Value
Type:
DataFrameInt64,
String
If columnDelimiters is , a space and tab character are used as
column delimiters.
Reference