Okey so I have two portfolios numbered 1 and 10, with monthly returns tr1 to tr12. I'd like to reshape the data so I have "year deciles month return". Any ideas?
-
Login or Register
- Log in with
reshape long tr, i(year deciles) j(month) rename tr return
Comment