Python 中 arff 库中的dump
命令使用户能够根据给定的输入创建 arff 文件,例如命令:
arff.dump("outputDir", data, relation="relation1",
names=['age, fatRatio, hairColor'])
产生以下 arff:
@relation relation1
@attribute age real
@attribute hairColor string
@data
10,0.2,black
22,10,yellow
30,2,black
对于给定的数据:
data = [[10,0.2,'black'],[22,10,'yellow'],[30,2,'black']]
我的问题是:如何通知相关机制我希望它hairColor
是一个名义属性,即我希望我的 arff 标头如下:
@relation relation1
@attribute age real
@attribute hairColor **nominal**
@data
...