So i am currently trying to recode a data set so that some variables that are currently character, are numeric. Now keep in mind, even though they are character variables, they still have the values 1,2,3, etc... (no letters).
I am trying to change the formatting so that these are numeric variables and not character variables.
Can anybody see what I'm doing wrong? I've been looking at it for a while now and can't figure it out.
CODING:
PROC FREQ DATA=WORK.MASTER_FILE5;
TABLES type ownership ownership1;
TITLE1 TYPE OWNERSHIP ownership1;
RUN;
*HERE I GET A PERFECTLY REASONABLE LIST OF DATA) BUT WHEN I MAKE MY NEW VARIABLES....*;
DATA work.master_file5_TESTING;
set work.master_file5;
newownership = input(ownership,8.);
newownership1 = input(ownership1,8.);
newtype = input(type, 8.);
RUN;
PROC FREQ DATA=work.master_file5_TESTING;
TABLES newownership newownership1 newtype;
RUN;
*THIS PROC FREQ ANALYSIS REPORTS THAT ALL VALUES ARE MISSING*;
Try
DATA work.master_file5_TESTING;
set work.master_file5;
newownership = input(left(ownership),8.);
newownership1 = input(left(ownership1),8.);
newtype = input(left(type), 8.);
RUN;
PG
Try
DATA work.master_file5_TESTING;
set work.master_file5;
newownership = input(left(ownership),8.);
newownership1 = input(left(ownership1),8.);
newtype = input(left(type), 8.);
RUN;
PG
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.