what is the prob plot in clinical domain
Answer / chandrakanth
Proc plot can be used to produce crude graphs as output. Like X vs Y eg: Height vs age (so here height is on x axis and age is on y axis)
syntax
proc plot data=dataset name;
plot variable name on x axis*variable name on y axis;
run;
if you want more graphic options proc gplot is used
| Is This Answer Correct ? | 7 Yes | 0 No |
How do you add a prefix to some or all variables in a dataset using a SAS macro?
Can we use where and having clauses in a single SAS program. ex: proc sql; select a,b,c from test where state in 'KA' and having <some condition>. Is the above program run correctly, if not why ?
How long can a macro variable be? A token? : sas-macro
What do the PUT and INPUT functions do?
Which function is used to count the number of intervals between two sas dates?
how do you read binary data in sas?
what does the run statement do? : Sas programming
how to write code for left outer join in SAs using datastep?
Which statement does not perform automatic conversions in comparisons?
6) Explain about below automatic variables a) _N_ b) _ERROR_ c) _CHAR_ d) _NUMERIC_ e) _ALL_ f) FIRST.BY VARIABLE g) LAST.BY VARIABLE h) _NAME_ i) _TYPE_ j) _FREQ_ k) _STAT_ l) _BREAK
In which case u go for libname and in which case u go for proc sql pass thru facilit diff?
how do you validate sas program?