JS實(shí)現(xiàn)K-Means聚類算法

效果圖:

image.png

image.png

image.png
<template>
    <div class="root">
        <div class="k-body">
            <div
                v-for="k of kPoints"
                :key="k.id"
                :style="{ top: `${k.y}px`, left: `${k.x}px`, background: k.color }"
                class="k-point"
            />
            <div
                v-for="point of dataSource"
                :key="point.id"
                :style="{ top: `${point.y}px`, left: `${point.x}px`, background: point.color }"
                class="point"
            />
        </div>
        <label>
            請輸入K值:
            <input type="number" v-model="k" />
        </label>
        <button @click="handleStartCalculate">開始計(jì)算</button>
        <button @click="handleMoveKPoints">移動(dòng)K點(diǎn)</button>
        <button @click="handleReset">重置</button>
    </div>
</template>

<script>
import { filter, forEach, isEqual, map, minBy, random, sumBy } from 'lodash'
import { v4 as uuid } from 'uuid'

const COLORS = [
    '#297aff',
    '#ff9800',
    '#30af28',
    '#ffcc0d',
    '#00cccc',
    '#66ccff',
    '#01a5ed',
    '#009966',
    '#A0D911',
]

const DEFAULT_COLOR = '#000000'

export default {
    name: 'KMeans',
    data() {
        return {
            dataSource: [], // 樣本
            kPoints: [], // 質(zhì)心
            k: 5, // K值
        }
    },
    created() {
        this.handleReset()
    },
    methods: {
        handleReset() {
            this.resetDataSource()
            this.initialKPoints()
        },
        initialKPoints() {
            this.kPoints = map(new Array(parseInt(this.k)), (item, index) => (
                {
                    id: uuid(),
                    x: random(0, 800 - 50, false),
                    y: random(0, 800 - 50, false),
                    color: COLORS[index % COLORS.length],
                }
            ))
        },
        resetDataSource() {
            this.dataSource = map(new Array(600), () => (
                {
                    id: uuid(),
                    x: random(0, 800 - 10, false),
                    y: random(0, 800 - 10, false),
                    color: DEFAULT_COLOR,
                    parent: null,
                }
            ))
        },
        /**
         * 計(jì)算樣本最近的k點(diǎn)
         * @param point
         * @returns {*}
         */
        calculateNearestKPoint(point) {
            const { kPoints } = this
            return minBy(kPoints, kPoint => {
                const {x, y} = kPoint
                const xOffset = Math.abs(x - point.x)
                const yOffset = Math.abs(y - point.y)
                return Math.sqrt(xOffset ** 2 + yOffset ** 2)
            })
        },
        /**
         * 計(jì)算樣本離哪個(gè)K點(diǎn)最近并進(jìn)行分類
         */
        handleStartCalculate() {
            const { dataSource, calculateNearestKPoint } = this
            forEach(dataSource, point => {
                const nearestKPoint = calculateNearestKPoint(point)
                point.color = nearestKPoint.color
                point.parent = nearestKPoint.id
            })
        },
        /**
         * 根據(jù)樣本點(diǎn)計(jì)算質(zhì)心
         */
        handleMoveKPoints() {
            const { dataSource, kPoints } = this
            forEach(kPoints, kPoint => {
                const children = filter(dataSource, point => isEqual(point.parent, kPoint.id))
                kPoint.x = sumBy(children, point => point.x) / children.length
                kPoint.y = sumBy(children, point => point.y) / children.length
            })
        }
    }
}
</script>

<style scoped>
    .root {
        width: 100%;
        height: 100%;
    }
    .k-body {
        margin: 0 auto;
        width: 800px;
        height: 800px;
        position: relative;
        border: 1px solid grey;
    }
    .point {
        width: 10px;
        height: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        opacity: 0.5;
    }
    .k-point {
        width: 25px;
        height: 25px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        position: absolute;
    }
</style>


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末昂秃,一起剝皮案震驚了整個(gè)濱河市又憨,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌河绽,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件暴区,死亡現(xiàn)場離奇詭異击你,居然都是意外死亡偏形,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門独郎,熙熙樓的掌柜王于貴愁眉苦臉地迎上來踩麦,“玉大人,你說我怎么就攤上這事氓癌∥角” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵贪婉,是天一觀的道長反粥。 經(jīng)常有香客問我,道長疲迂,這世上最難降的妖魔是什么才顿? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮尤蒿,結(jié)果婚禮上郑气,老公的妹妹穿的比我還像新娘。我一直安慰自己腰池,他們只是感情好尾组,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著示弓,像睡著了一般讳侨。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上奏属,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天跨跨,我揣著相機(jī)與錄音,去河邊找鬼囱皿。 笑死勇婴,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的嘱腥。 我是一名探鬼主播咆耿,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼爹橱!你這毒婦竟也來了萨螺?” 一聲冷哼從身側(cè)響起窄做,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎慰技,沒想到半個(gè)月后椭盏,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡吻商,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年掏颊,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片艾帐。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡乌叶,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出柒爸,到底是詐尸還是另有隱情准浴,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布捎稚,位于F島的核電站乐横,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏今野。R本人自食惡果不足惜葡公,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望条霜。 院中可真熱鬧催什,春花似錦、人聲如沸宰睡。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽夹厌。三九已至,卻和暖如春裆悄,著一層夾襖步出監(jiān)牢的瞬間矛纹,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工光稼, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留或南,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓艾君,卻偏偏與公主長得像采够,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子冰垄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容