what is the prob plot in clinical domain



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

Post New Answer

More SAS Interview Questions

what do the pad and dim functions do? : Sas programming

0 Answers  


What do you know about sas and what we do? : sas-grid-administration

0 Answers  


In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;

1 Answers  


What is the order of evaluation of the comparison operators: + - * /** ()?

3 Answers   Quintiles,


you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.

6 Answers  






Name statements that function at both compile and execution time.

7 Answers   Accenture,


Can you explain the process of calendar?

0 Answers  


how will you location sas platform applications available from web browser? : Sas-bi

0 Answers  


how can you put a "trace" in your program? : Sas programming

0 Answers  


what is chi-square test? have you used that?

1 Answers   Accenture, Quintiles,


for what purpose would you use the retain statement? : Sas programming

0 Answers  


Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?

4 Answers  


Categories