forked from stat660-f18/team-2_project2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
STAT660-01_f18-team-2_project2_data_preparation.sas
297 lines (254 loc) · 6.46 KB
/
STAT660-01_f18-team-2_project2_data_preparation.sas
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
*******************************************************************************;
**************** 80-character banner for column width reference ***************;
* (set window width to banner width to calibrate line length to 80 characters *;
*******************************************************************************;
*
[Dataset 1 Name] bank_nonsubscribe
[Dataset Description] This is a subset of the bank-additional dataset with
which the clients did not subscribe a term deposit.
The bank-additional dataset can be found at the following website
http://archive.ics.uci.edu/ml/machine-learning-databases/00222/bank.zip
[Experimental Unit Description] Each client in the Protuguese bank who didn't
subscribe a term deposit.
[Number of Observations] 36548
[Number of Features] 17
[Data Source] A subset of bank-full with y variable being "no".
[Data Dictionary] http://archive.ics.uci.edu/ml/datasets/Bank+Marketing#
[Unique ID Schema] A variable named "ID" was created to identify each client.
--
[Dataset 2 Name] bank_subscribe
[Dataset Description] This is a subset of the bank-full dataset with which
the clients subscribed a term deposit.
[Experimental Unit Description] Each client in the Protuguese bank who
subscribed a term deposit.
[Number of Observations] 4640
[Number of Features] 17
[Data Source] A subset of bank-full with y variable being "yes".
[Data Dictionary] http://archive.ics.uci.edu/ml/datasets/Bank+Marketing#
[Unique ID Schema] A variable named "ID" was created to identify each client.
--
[Dataset 3 Name] bank_se
[Dataset Description] This dataset contains additional attributes which
wasn't included in the original bank-full dataset.
[Experimental Unit Description] Each client in the Protuguese bank who
subscribed a term deposit.
[Number of Observations] 41188
[Number of Features] 6
[Data Source] This is a subset of the bank-additional-full dataset which can
be found at
http://archive.ics.uci.edu/ml/machine-learning-databases/00222/bank-additional.zip
This dataset only contains ID column and five new socioeconomics attributes.
[Data Dictionary] http://archive.ics.uci.edu/ml/datasets/Bank+Marketing#
[Unique ID Schema] The column ID is a unique id.
;
* environmental setup;
* create output formats;
proc format;
value $y
"no" = "Client did not subscribe a term deposit"
"yes" = "Client subscribed a term deposit"
;
value age
17-27 = "17-27"
28-38 = "28-38"
39-48 = "39-48"
49-59 = "49-59"
60-98 = "over 60"
;
run;
* setup environmental parameters;
%let inputDataset1URL =
https://github.com/stat660/team-2_project2/blob/master/data/bank_nonsubsriber.csv?raw=true
;
%let inputDataset1Type = CSV;
%let inputDataset1DSN = bank_nonsubscriber;
%let inputDataset2URL =
https://github.com/stat660/team-2_project2/blob/master/data/bank_subsriber.csv?raw=true
;
%let inputDataset2Type = CSV;
%let inputDataset2DSN = bank_subscriber;
%let inputDataset3URL =
https://github.com/stat660/team-2_project2/blob/master/data/bank_se.csv?raw=true
;
%let inputDataset3Type = CSV;
%let inputDataset3DSN = bank_se;
* load raw datasets over the wire, if they doesn't already exist;
%macro loadDataIfNotAlreadyAvailable(dsn,url,filetype);
%put &=dsn;
%put &=url;
%put &=filetype;
%if
%sysfunc(exist(&dsn.)) = 0
%then
%do;
%put Loading dataset &dsn. over the wire now...;
filename tempfile "%sysfunc(getoption(work))/tempfile.xlsx";
proc http
method="get"
url="&url."
out=tempfile
;
run;
proc import
file=tempfile
out=&dsn.
dbms=&filetype.;
run;
filename tempfile clear;
%end;
%else
%do;
%put Dataset &dsn. already exists. Please delete and try again.;
%end;
%mend;
%loadDataIfNotAlreadyAvailable(
&inputDataset1DSN.,
&inputDataset1URL.,
&inputDataset1Type.
)
%loadDataIfNotAlreadyAvailable(
&inputDataset2DSN.,
&inputDataset2URL.,
&inputDataset2Type.
)
%loadDataIfNotAlreadyAvailable(
&inputDataset3DSN.,
&inputDataset3URL.,
&inputDataset3Type.
)
* sort and check raw datasets for duplicates with respect to their unique ids,
removing blank rows, if needed;
proc sort
nodupkey
data = bank_nonsubscriber
dupout = bank_nonsubscriber_dups
out = bank_nonsubscriber_sorted
;
by
id
;
run;
proc sort
nodupkey
data = bank_subscriber
dupout = bank_subscriber_dups
out = bank_subscriber_sorted
;
by
id
;
run;
proc sort
nodupkey
data = bank_se
dupout = bank_se_dups
out = bank_se_sorted
;
by
id
;
run;
* combine the bank_nonsubsriber and bank_subscriber datasets vertically. Both
datasets have identical column names;
data bank_client;
retain
id
age
job
marital
education
default
housing
loan
contact
duration
campaign
pdays
previous
poutcome
y
;
keep
id
age
job
marital
education
default
housing
loan
contact
duration
campaign
pdays
previous
poutcome
y
;
set
bank_subscriber_sorted
bank_nonsubscriber_sorted
;
by
id
;
run;
* build analytic dataset from combining bank_client and bank_se horizontally,
the matching column is ID.;
data bank_analysis;
retain
id
age
job
marital
education
default
housing
loan
contact
duration
campaign
pdays
previous
poutcome
y
emp_var_rate
cons_price_idx
cons_conf_idx
euribor3m
nr_employed
age_range
;
keep
id
age
job
marital
education
default
housing
loan
contact
duration
campaign
pdays
previous
poutcome
y
emp_var_rate
cons_price_idx
cons_conf_idx
euribor3m
nr_employed
age_range
;
merge
bank_client
bank_se_sorted
;
by
ID
;
age_range = put(age, age.)
;
run;