| 
            
              CircularDescriptiveAnalysis Constructor (Double, Double, String)
             | 
          
        
         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[] columnNames
)<ObsoleteAttribute("Please pass only the lengths and columnNames parameters and call the Learn() method passing the data to be analyzed.")>
Public Sub New ( 
	data As Double(,),
	length As Double(),
	columnNames As String()
) Request Example
		View SourceParameters
- data
 - Type: SystemDouble
The source data to perform analysis. - length
 - Type: SystemDouble
The length of each circular variable (i.e. 24 for hours). - columnNames
 - Type: SystemString
Names for the analyzed variables. 
See Also