scipy.io.arff.
元数据#
- 类 scipy.io.arff.元数据(rel, 属性)[源代码]#
将有用信息保留在 ARFF 数据集中的小型容器。
了解属性名称和类型。
说明
还按顺序维护属性列表,即对于 meta 为 MetaData 的实例执行 meta 中的 for i,将按定义顺序返回不同的属性名称。
示例
data, meta = loadarff('iris.arff') # This will print the attributes names of the iris.arff dataset for i in meta: print(i) # This works too meta.names() # Getting attribute type types = meta.types()
方法