hi:
here is one solution:
cat<-as.factor(c(1,1,3,2,4))
model.matrix(~cat-1,cat)
cbind(cat,model.matrix(~cat-1,cat))
Andrija
On Tue, Apr 12, 2011 at 2:17 PM, Shane Phillips wrote:
> I have a categorical variable in a dataframe similar to the following...
>
> cat
> 1
> 1
> 3
> 2
> 4
>
> I need to
I have a categorical variable in a dataframe similar to the following...
cat
1
1
3
2
4
I need to convert it to 4 dichotemous variables for each observations like...
cat1cat2cat3cat4
1 0 0 0
1 0 0 0
0 0 1 0
0 1 0
2 matches
Mail list logo