Hi,
I need to obtain a set of dummies. Then I need to concatenate every one of them I generated in my simple loop. And that's what I can't figure it out.
c=seq(from=1, to=200)
region=round(runif(200,min=1,max=10),0)
cise=round(runif(200,min=0,max=6),0)
data=cbind(c,region,cise)
attach(data)...