gpt4 book ai didi

weka - ARFF 到 CSV 多文件转换

转载 作者:行者123 更新时间:2023-12-02 09:24:08 26 4
gpt4 key购买 nike

有人成功地尝试从 Windows 命令行将许多 ARFF 文件转换为 CSV 文件。

我尝试使用 weka.core.converters.CSVSaver 但它仅适用于单个文件。

可以对多个文件做吗?

最佳答案

我找到了一种使用 R 解决此转换的方法,如以下脚本所示:

#### Set the default directory to the folder that contains all ARFF files 

temp = list.files(pattern="*.arff")
library(foreign)

for (i in 1:length(temp)) assign(temp[i], read.arff(temp[i]))

for(i in 1:length(temp))
{
mydata=read.arff(temp[i])
t=temp[i]
x=paste(t,".csv")
write.csv(mydata,x,row.names=FALSE)
mydata=0
}

关于weka - ARFF 到 CSV 多文件转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39278420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com