Hello there. Several references say that there is a reader for .sav files from SPSS in Weka, but I just can´t find it. Can anyone provide help? Thanks in advance
AFAIK, WEKA does not natively support reading SPSS .sav files through an included package. However, if you are familiar with programming, you can use R (using packages like foreign or haven) or Python (using libraries like savReaderWriter) to read the .sav file and then export it to a format compatible with WEKA, such as ARFF or CSV. Another option is in SPSS, export your data to e.g., CSV file format and upload it to WEKA.
Thanks a lot Dr. Samer Sarsam. Didn't help much because I am looking for a way to preserve all the attribute properties from the *sav file to the *.arff, since I have a large and complex set of attributes, and the *.csv can't do the task. Anyway, thanks again.