https://github.com/adamrossnelson/generalreference
A place to keep general reference data resources
https://github.com/adamrossnelson/generalreference
Last synced: 3 months ago
JSON representation
A place to keep general reference data resources
- Host: GitHub
- URL: https://github.com/adamrossnelson/generalreference
- Owner: adamrossnelson
- Created: 2017-09-19T14:06:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-06T18:08:42.000Z (about 7 years ago)
- Last Synced: 2025-01-10T04:54:12.526Z (4 months ago)
- Language: Stata
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GeneralReference
A place to keep general reference data resources## Aspired for additions
- [ ] [Fips crosswalk.](https://github.com/adamrossnelson/GeneralReference/issues/1)
- [ ] [City, county, state level crime rates.](https://github.com/adamrossnelson/GeneralReference/issues/2)
- [ ] [City, county, state level costs of living.](https://github.com/adamrossnelson/GeneralReference/issues/3)## StatePop.do
StatePop.do collects from census.gov (https://www.census.gov/data/tables/2016/demo/popest/state-total.html) "Annual Estimates of the Resident Population for the United States, Regions, and Puerto Rico: April 1, 2010 to July 1, 2016." After copying that to c:\statadata it cleans the data for easy reference.
To convert the data from wide formate to long, try:```
reshape long yr, i(region) j(isYr)
```