在R中,kmeans()和kmeansCBI()有什么区别?

发布于 2024-11-02 07:02:28 字数 345 浏览 2 评论 0原文

我在数据集上尝试了 fps 包中的 kmeans()kmeansCBI()

但是,他们给出了不同的 SSE 值,所以我不知道哪个是正确的值。

例如,对于 700*5 数据,kmeans() 给出的 SSE 约为 33000,但 kmeansCBI() 给出的 SSE 为 120。

我应该使用什么值?

谢谢。

I tried both kmeans() and kmeansCBI() from the fps package on my dataset.

But, they give different SSE value, so I don't know which one is correct value.

For example, with 700*5 data, kmeans() gives me approximately 33000 as SSE, but kmeansCBI() gives me 120 as SSE.

What value should I use?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

入画浅相思 2024-11-09 07:02:28

从包的描述来看:
kmeans() 使用 Hartigan 和 Wong 方程,而 kmeansCBI()kmeansruns() 函数的接口,并调用 kmeans( )

您可以通过在函数名称前面使用 ? 来阅读任何函数的帮助。我不确定为什么您会得到不同的答案,但我建议您查看文档以确保您知道自己在做什么。

From the package descriptions:
kmeans() uses Hartigan and Wong equation while kmeansCBI() is an interface to the function of kmeansruns() and calls kmeans().

You can read the help for any function by using ? in front of the function name. I am not sure why you are getting different answers but I would advise you to check out the documentation to make sure you know what you are doing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文