Im new with python and I'm triying to load .arff file with python this is what i tried:
import arff , numpy as np
file1 = open('/Users/user/Desktop/example.arff')
dataset = arff.load(file1)
print dataset
data = np.array(dataset.data)
print data
The problem is the following output:
data = np.array(dataset.data)
AttributeError: 'generator' object has no attribute 'data'
Why is this happening? and how should i avoid it?. This is the .arff:
@relation foo
@attribute width numeric
@attribute height numeric
@attribute color {red,green,blue,yellow,black}
@data
5.0,3.25,blue
4.5,3.75,green
3.0,4.00,red
There are two arff's that can be installed, you probably need to install liac-arff, you currently have
arff
installed which returns a generator fromarff.load
.For the arff you have installed don's pass a file object just load the file directly: