Last active
April 14, 2016 02:05
-
-
Save ymattu/ad7492450544b0a3670a 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
libname income 'C:/Users/ユーザー名/Desktop/income_analysis' ; | |
data "income.sas7bdat"; | |
infile 'income.data'; | |
input gender race persinc; | |
if persinc = 99 then persinc=.; | |
run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment