Created
February 10, 2012 22:53
-
-
Save robinkraft/1793732 to your computer and use it in GitHub Desktop.
Reshaping FORMA data in Stata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Snippit is a useful reminder of how Stata does reshapes | |
reshape long prob, string i(yearmo) | |
reshape long prob, string | |
reshape long i, string i(iso) j(yo) | |
reshape long prob, string i(id2) j(yearmo) | |
replace yearmo = dotm(yearmo) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment