ideaGroup527 / multiinfo-new

1 stars 0 forks source link

聚类分析-点群 接口解释 #25

Open www1350 opened 8 years ago

www1350 commented 8 years ago

normalizationMethod: /* * 极差正规化 / public final static int NORMALIZATION_RANGE = 0;

/***
 * 极差标准化
 */
public final static int NORMALIZATION_RANGE_SD = 1;

/***
 * 标准差标准化
 */
public final static int NORMALIZATION_STANDARD_SD = 2;

clusterMethod: /* * Q型聚类 / public final static int TYPE_Q = 0;

/***
 * R型聚类
 */
public final static int TYPE_R = 1;

statisticsMethod: /* * 距离系数 / public final static int STATISTICS_DISTANCE = 0;

/***
 * 夹角余弦
 */
public final static int STATISTICS_ANGLE_COSINE = 1;

/***
 * 相关系数
 */
public final static int STATISTICS_CORRELATION = 2;

@Vamish

Vamish commented 8 years ago

??什么意思