Created
May 9, 2015 12:00
-
-
Save daynebatten/b381883a8b76680c04a2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* Sort so we can transpose */ | |
| proc sort data = joined; | |
| by county degree; | |
| run; | |
| /* And transpose! */ | |
| proc transpose data = joined out = constraints(drop = _NAME_) prefix = con; | |
| by county degree; | |
| id con; | |
| var included; | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment