Coarse classing based on weight of evidence in r
Posted
by
user3619169
on Stack Overflow
See other posts from Stack Overflow
or by user3619169
Published on 2014-06-02T12:08:36Z
Indexed on
2014/06/02
15:27 UTC
Read the original article
Hit count: 147
How can we use weight of evidence for binning continuous data in R. For e.g. I have a data:
Recency
364
91
692
13
126
4
40
93
13
33
262
12
136
21
88
16
4
19
24
89
36
5
274
125
740
6
13
715
591
443
104
853
260
125
62
357
559
155
163
16
433
91
1380
96
374
130
574
101
5
11
34
401
13
215
168
So, what should be the command to bin this variable in different groups, based on Weight of evidence, or you can say coarse classing.
Output I want is: Group I: Recency <200 Group I: Recency 200-400 Group I: Recency >400
Thanks
© Stack Overflow or respective owner