ClusteringModel<T> Constructor

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

ClusteringModel<T>(Matrix<T>)

Constructs a new ClusteringModel<T>.
C#
protected ClusteringModel(
	Matrix<T> features
)

Parameters

features  Matrix<T>
A real Matrix<T> whose columns contain the features for the analysis.

ClusteringModel<T>(IDataFrame, String)

Constructs a new ClusteringModel<T>.
C#
protected ClusteringModel(
	IDataFrame dataFrame,
	string formula
)

Parameters

dataFrame  IDataFrame
An IDataFrame containing the data for the analysis.
formula  String
A formula that specifies the features in the model.

Exceptions

ArgumentNullExceptiondataFrame is null.

-or-

formula is null.

FormatExceptionThe formula is not in the correct format.

ClusteringModel<T>(IDataFrame, String[])

Constructs a new ClusteringModel<T>.
C#
protected ClusteringModel(
	IDataFrame dataFrame,
	string[] featureNames
)

Parameters

dataFrame  IDataFrame
An IDataFrame containing the data for the analysis.
featureNames  String[]
An array containing the names of the feature variables.

Remarks

featureNames may be null.

Exceptions

ArgumentNullExceptiondataFrame is null.

ClusteringModel<T>(IEnumerable<Vector<Double>>, Vector<Double>)

Constructs a new ClusteringModel<T>.
C#
protected ClusteringModel(
	IEnumerable<Vector<double>> features,
	Vector<double> weights
)

Parameters

features  IEnumerable<Vector<Double>>
An array of Vector<T> objects that contain the dependent variables.
weights  Vector<Double>
The weight associated with each observation.

Remarks

Both features may be null.

See Also