data scores;
infile '/folders/myshortcuts/s2/scores.txt';
input gender$1. score1 score2 score3 score4;
avg=(score1+score2+score3+score4)/4;
run;
In scores.text I have given one missing value for score2 in one obsevation.For the same obsevation Value of avg is also coming as missing.Please refer the screenshot attached.
Please tell me why avg is not coming for this obsevation.
The result of any mathematical operation on a missing value results in an answer of missing hence your result.
If you want the average of the non-missing values use the mean function detailed here http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0vl2htnkjk...
The result of any mathematical operation on a missing value results in an answer of missing hence your result.
If you want the average of the non-missing values use the mean function detailed here http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0vl2htnkjk...
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.