0

I need to use DBSCAN to cluster betting odds of soccer matches.

The data consists of :

ID, Home Team, Away Team, Date, Time, Home Winning Odds, Draw Odds and Away Winning Odds.

I need Home Winning Odds, Draw Odds and Away Winning Odds for the DBSCAN clustering because I want to find outliers using the noise cluster.

However I have no means of knowing those points to which record they belonged.]

I am working with GNU R to use the algorithm using the package fpc

4

1 回答 1

0

从 DBSCAN 伪代码:

add P to cluster C

此时,您显然应该存储哪些点属于哪个集群;在您喜欢的任何数据结构中(可以是集合或集群分配数组)。

于 2015-05-11T11:28:59.647 回答