Dear All,
suppose you have data of the following format:
I would like to reshape as panel. I am using:
This works, but Stata only recognizes the first 250 "variables" (which are really dates). How can I have it reshape all 42369-36526 variables into dates?
Thanks in advance!
Best,
suppose you have data of the following format:
Code:
name return_36525 return_36526 ... return_42369 banka 12 15 ... 48 bankb NA 15 ... 20 ...
Code:
reshape long return_, i(name) j(exceldatetime)
This works, but Stata only recognizes the first 250 "variables" (which are really dates). How can I have it reshape all 42369-36526 variables into dates?
Thanks in advance!
Best,
Comment