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 is sas business intelligence? : Sas-bi

0 Answers  


what is intially documentation in sas?

1 Answers   Accenture,


Briefly describe 5 ways to do a "table lookup" in sas.

4 Answers   Quintiles,


How would you include common or reuse code to be processed along with your statements?

5 Answers   PSCI,


Describe the ways in which you can create a macro variable?

0 Answers  






What type of tables you are using in YOUR reporting..???

2 Answers   GSK GlaxoSmithKline,


WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?

0 Answers   Satyam,


what is the use of LRECL option.

1 Answers   L&T,


Which command is used to perform sorting in sas program?

0 Answers  


data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.

2 Answers  


How would you delete observations with duplicate keys?

6 Answers  


Briefly explain input and put function?

0 Answers  


Categories