开发者

Is there a way in which i can give the following matrix as an input to a kmeans clustering program?

开发者 https://www.devze.com 2023-03-01 15:07 出处:网络
imagine I have the following \"Pageview matrix\" COLUMN HEADINGS:books placement resources br aca Each row represents a session

imagine I have the following "Pageview matrix"

COLUMN HEADINGS: books placement resources br aca

Each row represents a session

so this is my matrix,sample:

4 5 0 2 2

1 2 1 7 3

1 3 6 1 6

saved in a .txt file

开发者_如何学运维

Can i give this as an input to a k-means program and obtain clusters based on the highest frequency of occurrence??

How do i use it?


Can i give this as an input to a k-means program and obtain clusters based on the highest frequency of occurrence?

This is not what k-means does.

You can feed it to a k-means algorithm though. Each row is just a point in a 5d space - what part are you having trouble with?

0

精彩评论

暂无评论...
验证码 换一张
取 消