Click or drag to resize

SeriesFromCsv(String, Csv, Int32, Int32) Method

Imports a series from a CSV file.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+892c66cd78254e5a7ad663c063da400b3042cf5b
Syntax
C#
public static Series FromCsv(
	string name,
	Csv csv,
	int dateIndex,
	int valueIndex
)

Parameters

name  String
The name for the series.
csv  Csv
The CSV file wrapper.
dateIndex  Int32
The index of the column with dates.
valueIndex  Int32
The index of the column with values.

Return Value

Series
A new series with the given name.
See Also