Dear all,
I have two quick problems:
1) I have a database which have monthly data. I want to compact the data restricting the original database.
In doing so, I have made the following loop:
loop i=2002..2012 --progressive
loop j=1..12 --progressive
smpl Destino=1 && Familia=2 && Anio=i && Mes=j --restrict
M[132+(i-2002)*12+j,2]=nobs(Anio)
smpl full
endloop
endloop
which store each sample in a matrix.