forked from kravdiy/churn_predicition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
42 lines (38 loc) · 1.21 KB
/
config.py
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
COLUMN_NAMES = ['AccountLength',
'VMailMessage',
'DayMins',
'EveMins',
'NightMins',
'IntlMins',
'CustServCalls',
'churn',
'IntlPlan',
'VMailPlan',
'DayCalls',
'DayCharge',
'EveCalls',
'EveCharge',
'NightCalls',
'NightCharge',
'IntlCalls',
'IntlCharge',
'State',
'AreaCode',
'Phone']
COLUMN_BOXPLOTS = ['AccountLength',
'VMailMessage',
'DayMins',
'EveMins',
'NightMins',
'IntlMins',
'CustServCalls',
'DayCalls',
'DayCharge',
'EveCalls',
'EveCharge',
'NightCalls',
'NightCharge',
'IntlCalls',
'IntlCharge',
]
FEATURES = ['DayMins','EveMins','NightMins','IntlMins','CustServCalls','IntlPlan','DayCharge','EveCharge','NightCharge','IntlCharge']