Click or drag to resize
Accord.NET (logo)

CircularDescriptiveAnalysis Constructor (Double, Double, String, Boolean)

Note: This API is now obsolete.

Constructs the Circular Descriptive Analysis.

Namespace:  Accord.Statistics.Analysis
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please pass only the lengths and columnNames parameters and call the Learn() method passing the data to be analyzed.")]
public CircularDescriptiveAnalysis(
	double[] data,
	double length,
	string columnName,
	bool inPlace = false
)
Request Example View Source

Parameters

data
Type: SystemDouble
The source data to perform analysis.
length
Type: SystemDouble
The length of each circular variable (i.e. 24 for hours).
columnName
Type: SystemString
The names for the analyzed variable.
inPlace (Optional)
Type: SystemBoolean
Whether the analysis should conserve memory by doing operations over the original data array.
See Also