Method | Description | |
---|---|---|
ClusterDataSet ( |
Seperates a dataset into clusters or groups with similar characteristics
|
|
ClusterDataSet ( int clusterCount, double data ) : |
Seperates a dataset into clusters or groups with similar characteristics
|
|
ClusterDataSetRandomSeeding ( int k, double data ) : |
Seperates a dataset into clusters or groups with similar characteristics
|
|
ClusterMean ( double cluster ) : double[] |
Calculates The Mean Of A Cluster OR The Cluster Center
|
|
ClusterPartialDataSet ( |
||
EuclideanDistance ( double X, double Y ) : double |
Calculates the Euclidean Distance Measure between two data points
|
|
KMeansParallel ( ) : System | ||
ManhattanDistance ( double X, double Y ) : double |
Calculates the Manhattan Distance Measure between two data points
|
|
RandomSeeding ( int k, double data ) : |
||
Serialize ( System myObject, string writeToXmlPath ) : bool |
Saves or Serializes a Cluster Collection To an Xml file
|
public ClusterDataSet ( |
||
clusters | A collection of data clusters | |
data | double | An array containing data to b eclustered |
return |
public ClusterDataSet ( int clusterCount, double data ) : |
||
clusterCount | int | The number of clusters or groups to form |
data | double | An array containing data that will be clustered |
return |
public ClusterDataSetRandomSeeding ( int k, double data ) : |
||
k | int | |
data | double | An array containing data that will be clustered |
return |
public ClusterMean ( double cluster ) : double[] | ||
cluster | double | /// A two-dimensional array containing a dataset of numeric values /// |
return | double[] |
public ClusterPartialDataSet ( |
||
clusters | ||
data | double | |
start | int | |
count | int | |
return | int[] |
public EuclideanDistance ( double X, double Y ) : double | ||
X | double | An array with the values of an object or datapoint |
Y | double | An array with the values of an object or datapoint |
return | double |
public ManhattanDistance ( double X, double Y ) : double | ||
X | double | An array with the values of an object or datapoint |
Y | double | An array with the values of an object or datapoint |
return | double |
public RandomSeeding ( int k, double data ) : |
||
k | int | |
data | double | |
return |
public static Serialize ( System myObject, string writeToXmlPath ) : bool | ||
myObject | System | A serializable object to be persisted to an Xml file |
writeToXmlPath | string | The location of the Xml file tha will contain serialized data |
return | bool |