我正在与 Weka 合作一个项目,我有两个不同的arff文件,如下所示:
文件 1:
@attribute class {yes, no}
@attribute a numeric
@data
{0 yes, 1 2}
{0 yes}
文件2:
@attribute class {yes, no}
@attribute b numeric
@attribute a numeric
@data
{0 yes, 1 2}
{0 no, 1 1, 2 1}
有没有办法通过组合这两个 arff 文件来创建一个新文件,如下所示?
文件3:
@attriute class{yes, no}
@attribute a numeric
@attribute b numeric
@data
{0 yes, 1 2} ("copied" from file 1)
{0 yes} ("copied" from file 1)
{0 yes, **2** 2} ("copied" from file 2)
{0 no, **2** 1, **1** 1} ("copied" from file 2)
合并并且不起作用,因为我在每个文件上都有不同的属性。