python预处理arff文件_由python中的arff库创建的arff文件中的名义属性

有几种不同的方式在这里做这样概括:

我觉得对我来说更好的方法是第二个这建议是:

arff_writer = arff.Writer(fname, relation='diabetics_data', names)

arff_writer.pytypes[arff.nominal] = '{not_parasite,parasite}'

arff_writer.write([arff.nominal('parasite')])

如果你看看在代码为arff.nominal,它的定义是这样的:

class Nominal(str):

"""Use this class to wrap strings which are intended to be nominals

and shouldn't have enclosing quote signs."""

def __repr__(self):

return self

所以我有大功告成创建每个标称不同的“包装”标称类属性我这样的:

class ZipCode(str):

"""Use this class to wrap strings which are intended to be nominals

and shouldn't have enclosing quote signs."""

def __repr__(self):

return self

,然后按照上面的代码,你可以做这样的事情:

arff_writer = arff.Writer(fname, relation='neighborhood_data', names)

arff_writer.pytypes[type(myZipCodeObject)] = '{85104,84095}'

# then write out the rest of your attributes...

arff_writer.write([arff.nominal('parasite')])

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值