ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
1 - age (numeric)
2
2 - job : type of job (categorical: "admin.","unknown","unemployed","management","housemaid","entrepreneur","student",
3
blue-collar,"self-employed","retired","technician","services")
4
3 - marital : marital status (categorical: "married","divorced","single"; note: "divorced" means divorced or widowed)
5
4 - education (categorical: "unknown","secondary","primary","tertiary")
6
5 - default: has credit in default? (binary: "yes","no")
7
6 - balance: average yearly balance, in euros (numeric)
8
7 - housing: has housing loan? (binary: "yes","no")
9
8 - loan: has personal loan? (binary: "yes","no")
10
# related with the last contact of the current campaign:
11
9 - contact: contact communication type (categorical: "unknown","telephone","cellular")
12
10 - day: last contact day of the month (numeric)
13
11 - month: last contact month of year (categorical: "jan", "feb", "mar", ..., "nov", "dec")
14
12 - duration: last contact duration, in seconds (numeric)
15
# other attributes:
16
13 - campaign: number of contacts performed during this campaign and for this client (numeric, includes last contact)
17
14 - pdays: number of days that passed by after the client was last contacted from a previous campaign (numeric, -1 means client was not previously contacted)
18
15 - previous: number of contacts performed before this campaign and for this client (numeric)
19
16 - poutcome: outcome of the previous marketing campaign (categorical: "unknown","other","failure","success")
20
21
Output variable (desired target):
22
17 - y - has the client subscribed a term deposit? (binary: "yes","no")
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100