The variables I have are Community, CommunityName, BirthRate, BelowPovLev, Crowded, Dependency, NoHSDiploma, Income, and Unemployment. I have imported the CSV file, and with Proc Print, every variable shows up in the table. When I try to do any other procedure like sgscatter or corr, the variable Unemployment is not found. There are no spelling errors as I have copied and pasted the word from the Excel file. 56 Proc sgscatter Data=Teen; 57 MATRIX Community BirthRate BelowPovLev Crowded Dependency NoHSDiploma Income 58 Unemployment; ERROR: Variable UNEMPLOYMENT not found. 59 Run; What am I doing wrong?
... View more