how to shift the rows to cols?
eg:
i have like
field1 field2 field3
10 20 20
this should be displayed as
field1 10
field2 20
field3 30
(without the obs col)
how do this?can i use transpose or tell me suitable way to
do this?
Answer Posted / luclyl
proc transpose data=hyd out=mum (drop=_NAME_);
var a b c;
run;
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Give e an example of..
What is connection profile? : sas-grid-administration
Explain proc univariate?
What’s the difference between var b1 – b3 and var b1 — b3?
what is the effect of the options statement errors=1? : Sas programming
What is the role of unrestrictive users? : sas-grid-administration
What is the basic syntax style in SAS?
Give some examples where proc report’s defaults are different than proc print’s defaults?
What is by-group processing?
I need level 2 to 5 sas using companies in india
Enlist the syntax rules followed in sas statements.
Mention sas system options to debug sas macros.
Intern stastical programmer written test
How to create an external dataset with sas code?
What would be the value of month at the end of data step execution and how many observations would be there?