You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2017. It is now read-only.
This is not a major issue, but a minor adjustment to your documented example is needed.
You have:
var testData = {
outlook : 'sunny',
windy : 'TRUE',
temperature: 30,
humidity : 2,
play : 'no' // last is class attribute
};
But the ordering is wrong - and causes the java to barf. It should be:
var testData = {
outlook : 'sunny',
temperature: 30,
humidity : 2,
windy : 'TRUE',
play : 'no' // last is class attribute
};
Hi,
This is not a major issue, but a minor adjustment to your documented example is needed.
You have:
var testData = {
outlook : 'sunny',
windy : 'TRUE',
temperature: 30,
humidity : 2,
play : 'no' // last is class attribute
};
But the ordering is wrong - and causes the java to barf. It should be:
var testData = {
outlook : 'sunny',
temperature: 30,
humidity : 2,
windy : 'TRUE',
play : 'no' // last is class attribute
};
Cheers
Colin Goldberg