Skip to content

Instantly share code, notes, and snippets.

@daynebatten
Created May 9, 2015 12:00
Show Gist options
  • Select an option

  • Save daynebatten/b381883a8b76680c04a2 to your computer and use it in GitHub Desktop.

Select an option

Save daynebatten/b381883a8b76680c04a2 to your computer and use it in GitHub Desktop.
/* 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