Hi,
I am trying to output a cumulative distribution of a variable but i am interested in creating the output dataset and not the plot. The following code outputs the dataset exactly like i wanted but it also outputs the graph. How do i suppress the graph?
ods graphics on;
proc univariate data=temp;
cdf score;
ods output cdfplot = data_wanted; run;
run;
Any help would be appreciated