Hi everyone,
I have a long dataset and used this code to reshape it to wide format:
Code:
ds hhidpn wave, not
reshape wide `r(varlist)', i(hhidpn) j(wave)
I was wondering to know how can I reshape the data to long format once again. I tried the below code, but it did not work:
Code:
reshape long `r(varlist)' , i(hhidpn) j(wave)
Thanks.
Nader