forked from anaavila/convert-csv-to-arff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworldcup2014.arff
50 lines (47 loc) · 1.11 KB
/
worldcup2014.arff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%
% Comments go after a '%' sign.
%
%
% Relation: World Cup 2014
%
%
% Attributes: 3 Instances: 32
%
%
@relation World Cup 2014
@attribute 'Country' {'algeria','argentina','australia','belgium','bosnia and herzegovina','brazil','cameroon','chile','colombia','costa rica','croatia','ecuador','england','france','germany','ghana','greece','honduras','iran','italy','ivory coast','japan','mexico','netherlands','nigeria','portugal','russia','south korea','spain','switzerland','united states','uruguay'}
@attribute 'Group' {'h','f','b','a','c','d','e','g'}
@attribute 'Position' numeric
@data
'algeria','h',2
'argentina','f',1
'australia','b',4
'belgium','h',1
'bosnia and herzegovina','f',3
'brazil','a',1
'cameroon','a',4
'chile','b',2
'colombia','c',1
'costa rica','d',1
'croatia','a',3
'ecuador','e',3
'england','d',4
'france','e',1
'germany','g',1
'ghana','g',4
'greece','c',2
'honduras','e',4
'iran','f',4
'italy','d',3
'ivory coast','c',3
'japan','c',4
'mexico','a',2
'netherlands','b',1
'nigeria','f',2
'portugal','g',3
'russia','h',3
'south korea','h',4
'spain','b',3
'switzerland','e',2
'united states','g',2
'uruguay','d',2