如何使用Oracle集成的数据挖掘功能来检测数据集中存在的异常值

发布于 2024-11-05 12:18:02 字数 172 浏览 1 评论 0原文

我的电脑上安装了oracle10g企业版。我想从数据集中找到异常值,如何使用 dbms_data_mining_transform 包来实现这一点。我知道简单的统计方法。但我必须在数据库详细信息中进行操作。我不想在数据库之外获取大型数据集。

请有人帮助我。或者建议我可以在 oracle 中做一些事情来查找异常值。

I have installed oracle10g enterprise edition on my computer. I want to find the outliers from the dataset, how this can be achieved using the dbms_data_mining_transform package. I knew simple statistical methods. But i have to do within the Database details. I dont want to fetch large dataset outside the database.

Please somebody help me in this. Or suggest something that i can do in oracle to find outliers.

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

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

发布评论

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

评论(1

那支青花 2024-11-12 12:18:02
begin
  dbms_data_mining.create_model(
   'TEST1', 'CLUSTERING', 'DATATAB_TO_MINE', null);
end;
/

http://docs.oracle.com/cd/B28359_01 /datamine.111/b28131/models_building.htm#BCGDADID

begin
  dbms_data_mining.create_model(
   'TEST1', 'CLUSTERING', 'DATATAB_TO_MINE', null);
end;
/

http://docs.oracle.com/cd/B28359_01/datamine.111/b28131/models_building.htm#BCGDADID

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