I am trying to generate a QQPLOT with ODS Graphics turned on. The dataset (crdata.mortgage) has 622489 observations and 23 variables. I am trying to generate the QQPLOT for two of the variables (FICO_orig_time and LTV_orig_time). The below is the code I am using: /* Q-Q Plots or quantile-quantile plots */ ODS GRAPHICS ON; PROC UNIVARIATE DATA=crdata.mortgage NOPRINT; QQPLOT FICO_orig_time LTV_orig_time / NORMAL(MU=EST sigma=EST COLOR=lightgrey); RUN; ODS GRAPHICS OFF; However, the QQPLOT is taking forever to generate. Upon stopping the code I found the warning repeated two times for both the variables "WARNING: This graph has too many graphical elements. You may not be able to get any vector graphics output and in that case, you can set your output format to an image type." Any help would be much appreciated.
... View more