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
Describe a time when you were really stuck on a problem and how you solved it?
What are the statements in proc sql?
What is the use of the %include statement?
What is PROC in SAS?
Explain input and put function?
How long can a macro variable be? A token? : sas-macro
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Are you sensitive to code walk-throughs peer review or QC review?
Explain bmdp procedure?
What are the features of SAS?
Explain what Proc glm does?
Describe the ways in which you can create macro variables? : sas-macro
How do dates work in sas?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What is maximum number of rows and cols can be handled in SAS?