create arff_converter script.py

This commit is contained in:
Murat Onur Yildirim 2022-10-02 14:22:22 +02:00
parent 587f551219
commit 9494208304

View File

@ -0,0 +1,14 @@
from scipy.io.arff import loadarff
import pandas as pd
def arff_to_csv(data, out_file_name):
df = pd.DataFrame(loadarff(data)[0])
df.to_csv(out_file_name, index=False)
def arff_to_excel(data, out_file_name):
df = pd.DataFrame(loadarff(data)[0])
df.to_excel(out_file_name, index=False)