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
Answers were Sorted based on User's Feedback
Answer / ashish
data count;
set l;
if count(name,'malli') then b=_n_;
run;
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / raghava
data zoo;
infile datalines;
input Name $ 29.;
datalines;
Manoj is good boy to krishna
Krishna is good boy to malli
malli si good boy to ramana
;
run;
proc print;
run;
data zoo1;
set zoo;
Name=catx('','Manoj');
run;
proc print;
run;
| Is This Answer Correct ? | 0 Yes | 4 No |
diff between nodup rec and ondup key???
Explain append procedure?
i have a dataset with var1,var2,var3; i want to upload the titles for the variables . How can we?
Mention how to limit decimal places for the variable using proc means?
How are numeric and character missing values represented internally?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
Enlist the syntax rules followed in sas statements.
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
Mention the validation tools used in SAS?
Which command is used to save logs in the external file?
In SAS explain which statement does not perform automatic conversions in comparisons?