Displaying 1 result from an estimated 1 matches for "constitud".
Did you mean:
constitui
2012 Mar 27
1
matrix(unlist(strsplit(""))) 'missing value' issue
...267000:notaccepted 200000:notaccepted
Levels: 246000:accepted 267000:notaccepted 200000:notaccepted
> alldata$bankoffer.3
[1] 9999999 429000:notaccepted 48000:notaccepted
Levels: 9999999 429000:notaccepted 48000:notaccepted
The problem is that the values in the cells are weird, they constitude for
example of /'246000:accepted'/I would decompose that so that /246000 /is in
one variable and /accepted /in another
no problem just do this:
> as.data.frame(matrix(unlist(strsplit(as.character(alldata$bankoffer.1),":")),
> ncol = 2, byrow = TRUE))
V1 V2
1...