"predictive attribute" 是什么意思?
What does it mean "predictive attribute"?
我已经从 UCI 机器学习存储库下载了 data set。在数据集的描述中,他们谈到了"predictive attribute"和"non-predictive attribute"。这是什么意思,如何在数据集中识别它们?
对我来说,属性似乎与可用数据点的类型有关;因此,预测属性将是一个数据点,可用于 "predict" 某些内容,例如 MYCT
、MMIN
、MMAX
、CACH
、CHMIN
、CHMAX
。 "non-predictive attribute" 将是供应商名称和型号名称。 PRP好像是目标域,线性回归猜测是ERP。
预测属性是可能帮助您预测的属性。
已知 Non-predictive 属性无济于事。比如一条记录id,用户号等,Unique key一般属于这一类。
我已经从 UCI 机器学习存储库下载了 data set。在数据集的描述中,他们谈到了"predictive attribute"和"non-predictive attribute"。这是什么意思,如何在数据集中识别它们?
对我来说,属性似乎与可用数据点的类型有关;因此,预测属性将是一个数据点,可用于 "predict" 某些内容,例如 MYCT
、MMIN
、MMAX
、CACH
、CHMIN
、CHMAX
。 "non-predictive attribute" 将是供应商名称和型号名称。 PRP好像是目标域,线性回归猜测是ERP。
预测属性是可能帮助您预测的属性。
已知Non-predictive 属性无济于事。比如一条记录id,用户号等,Unique key一般属于这一类。