Last active
August 29, 2015 14:19
-
-
Save daynebatten/0b125d1df24b141237f9 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
| data testset; | |
| input @1 level @3 county $3. @7 degree $3. @11 num 3. @15 salary 5.; | |
| datalines; | |
| 3 WAY B 100 30000 | |
| 3 WAY M 25 50000 | |
| 3 WAY P 1 70000 | |
| 3 FAR B 200 30000 | |
| 3 FAR M 50 50000 | |
| 3 FAR P 2 70000 | |
| 1 ALL B 300 30000 | |
| 1 ALL M 75 50000 | |
| 1 ALL P 3 70000 | |
| 2 WAY ALL 126 34286 | |
| 2 FAR ALL 252 34286 | |
| 0 ALL ALL 378 34286 | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment