How can I specify label of new data according to the weather.nominal.arff data in WEKA?

I open the weather.nominal.arff data and classify it with J48, but I don't know how can I specify label of new data like this:

@relation NewData

@attribute outlook {sunny,overcast,rainy}

@attribute temperature {hot,mild,cool}

@attribute humidity {high,normal}

@attribute windy {TRUE,FALSE}

@attribute play {yes,no}

@data

sunny,hot,high,FALSE

sunny,hot,high,TRUE

overcast,hot,high,FALSE

rainy,mild,high,FALSE

rainy,cool,normal,FALSE

rainy,cool,normal,TRUE

overcast,cool,normal,TRUE

---

And the weather.nominal.arff is:

@relation weather.symbolic

@attribute outlook {sunny, overcast, rainy}

@attribute temperature {hot, mild, cool}

@attribute humidity {high, normal}

@attribute windy {TRUE, FALSE}

@attribute play {yes, no}

@data

sunny,hot,high,FALSE,no

sunny,hot,high,TRUE,no

overcast,hot,high,FALSE,yes

rainy,mild,high,FALSE,yes

rainy,cool,normal,FALSE,yes

rainy,cool,normal,TRUE,no

overcast,cool,normal,TRUE,yes

sunny,mild,high,FALSE,no

sunny,cool,normal,FALSE,yes

rainy,mild,normal,FALSE,yes

sunny,mild,normal,TRUE,yes

overcast,mild,high,TRUE,yes

overcast,hot,normal,FALSE,yes

rainy,mild,high,TRUE,no

More Bahman Mirzakhani's questions See All
Similar questions and discussions