i have a dataset with 25 obs; 10th obs has like
ramu,anji,ramu,azad,ramu like this. i want to know how many
times the word repeats in that obs?

Answers were Sorted based on User's Feedback



i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know..

Answer / alok karan

data repeat;
x="ramu anji ramu azad ramu";
y=count(x,"ramu");
run;
proc print data=repeat;
run;

Is This Answer Correct ?    2 Yes 1 No

i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know..

Answer / aarti

Data DS;
INFILE datalines;
input name $;
datalines;
ram
sham
seema
amit
sham
sushil
amit
seema
ravi
run;
proc sql;
create table rep as
select name,count(name) as cnt from ds group by 1;
quit;
proc print data=rep;

Is This Answer Correct ?    1 Yes 2 No

i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know..

Answer / vivek

Data DS;
INFILE datalines;
input name $;
datalines;
ram
sham
seema
amit
sham
sushil
amit
seema
ravi
run;

proc freq data = ds;
table name;
output out =dsfrq;
run;

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SAS Interview Questions

What are symbol tables?Differemce between Local N Global Symbol tables.....

2 Answers   TCS,


what is the SAS/ACCESS and SAS/CONNECT?

9 Answers   Accenture, iFlex, TCS,


proc means? proc sort? proc append? proc freq? proc print? proc content?

4 Answers   Oracle,


Compare sas with other data analytics tools.

0 Answers  


Name statements that are execution only.

14 Answers   Accenture,






How to convert .xls file into CSV format?

6 Answers   Quintiles,


what is incremental update ? is this possible in SAS OLAP CUBE STUDIO.

1 Answers   TCS,


What are the difference between sas functions and procedures?

0 Answers  


Do you need to rearrange the order of the data for the report?

0 Answers  


what is fact table and factless table?

1 Answers  


Why is a STOP statement needed for the point=option on a SET statement?

2 Answers   Quintiles,


Mention what is the difference between nodupkey and nodup options?

0 Answers  


Categories