Hello! I am just beginning my adventure with SAS and I need a little help with a subject connected to missing data. I have a dataset of 2310 variables and 52841 observations and I am supposed to analyze the missing data in the form of visualized graphs and reports. The graphs should help with identifying variables which have no missing data and a lot of missing data, but with 2310 variables I don't know how to do that. I tried to show the % of missing data in a graph, but I would like the x axis to be more detailed (I want the marks of 10, 30, 50 % and so on to show). ods graphics / reset width=7in height=4.8in imagemap; proc sgplot data=SASUSER.TMISS_NUM; histogram miss_proc / scale=count fillattrs=(color=CX7fb1e0) dataskin=matte; xaxis label="Braki danych"; yaxis grid label="Liczba zmiennych"; run; ods graphics / reset; Do you maybe have any recommendations how can I achieve that and what kind of visual graphs and reports I can make? I would appreciate any kind of help 🙂 Thank you in advance!
... View more