Hello,
I would like to create a dummy dataset as below:
id | sex | stop |
1 | Female | 0 |
1 | F | 1 |
1 | Male | 0 |
1 | M | 0 |
1 | 1 |
My codes are like below:
data df ;
infile datalines missover;
input id sex $ stop;
datalines ;
1 Femal 0
1 M 1
1 Male 0
1 F 0
1 1
;
run;
However it came out like below which is wrong. What did I do wrong. How can I create the dataset contain missing value?
id | sex | stop |
1 | Female | 0 |
1 | F | 1 |
1 | Male | 0 |
1 | M | 0 |
1 | 1 |
Put a period for the missing value (both numeric and character variables).
data df ;
infile datalines truncover;
input id sex $ stop;
datalines ;
1 Femal 0
1 M 1
1 Male 0
1 F 0
1 . 1
;
Note you almost never want the functionality of the ancient MISSOVER option, which will set values missing when the line is too short for the informat being used. So use the modern (less than 40 years old) TRUNCOVER option instead.
Put a period for the missing value (both numeric and character variables).
data df ;
infile datalines truncover;
input id sex $ stop;
datalines ;
1 Femal 0
1 M 1
1 Male 0
1 F 0
1 . 1
;
Note you almost never want the functionality of the ancient MISSOVER option, which will set values missing when the line is too short for the informat being used. So use the modern (less than 40 years old) TRUNCOVER option instead.
Use the DSD option and a proper delimiter:
data df;
infile datalines dsd truncover;
input id sex $ stop;
datalines;
1,Female,0
1,M,1
1,Male,0
1,F,0
1,,1
;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.