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 |
where will go the observations that were deleted by delete statement?
How would you delete duplicate observations?
Hi... this is chandu, did MSc Microbiology, trying to get job in SAS tool, PLZ Tell me whether IT industries will give consider my education to gain a job....?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
What are the different servers in sas? : sas-grid-administration
Explain append procedure?
how does sas handle missing values in sort order? : Sas programming
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
is there any differnce between proc means and proc summary?
whenever we using the merging through data set merging ,we can get note in log like this "MERGE STATEMENT HAS MORE THAN ONE ONE DATASET BY REPEATED BY VAIABLES" but the output has come in good manner,whenever in in sql(full join) we can get cartion product.so How do overcome this problem in sql?
how can you sort the dataset having millions of OBS(instead of sort procedure?
How do you use the do loop if you don’t know how many times you should execute the do loop?