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 / 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 |
Post New Answer View All Answers
what is sas olap server? : Sas-di
What would be the value of month at the end of data step execution and how many observations would be there?
how could you generate test data with no input data? : Sas programming
How to sort in descending order?
where are dashboard components are created and maintained? : Sas-bi
what is hierarchy flattening? : Sas-di
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
Can you suggest us materials for sdtm mapping?
What is Linear Regression?
Differentiate input and infile.
Will it bother you if the guy at the next desk times the frequency and duration of your bathroom or coffee breaks on the grounds that ?you are getting paid twice as much as he is??
what is data governance? : Sas-di
do you prefer proc report or proc tabulate? Why? : Sas programming
How to limit decimal places for variable using proc means?