关于提取有效数据

来源:百度知道 编辑:UC知道 时间:2024/06/23 03:35:55
我要做一个考核系统,要求通过网络匿名打分。现在我收集了一些原始数据,通过一定的处理来提取其中有效的部分,去除不真实的数据,应该用一种什么算法进行处理呢?急需算法名称或类型,有具体算法步骤更好,谢谢大家了。
是算法,用来过滤,去掉不真实数据,好像是去噪、聚类?

数据库 有种视图 具体语法
if exists(select *from sysobjects where name ='cc')
drop view cc
go
create view cc
as
select cardid as 卡号,curtype as 货市类型,savingtype as 存款类型,opendate as 开户日期,balance as 余额,pass as 密码,isreportloss as 是否挂失,customerid as 客户编号 from cardinfo
go
select * from cc