i have one dataset
data l;
input name: $ 25;
cards;
manoj is a good boy to krishna
krishna is a god boy to malli
malli is good boy to ramana
ques: here i want "manoj" observations nubers
Answer Posted / vivek
data count;
set l;
a = count(sen,'manoj');
run;
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
Define run-group processing?
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
Do you need to rearrange the order of the data for the report?
What is the function of Stop statement in a SAS Program?
what can you learn from the sas log when debugging? : Sas programming
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
is data integration and etl programming is same? : Sas-di
What is the length assigned to the target variable by the scan function?
how does sas handle missing values in a merge? : Sas programming
How will you generate test data with no input data?
how do you want missing values handled? : Sas programming
What do the mod and int function do? : Sas programming
Explain how you can debug and test your SAS program?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
what are the considerations when picking a SAS/STAT procedure?