Hello everyone, I was blé to get the frequency on 2 variables age and score and plot an histograms for both using the following formulas Proc freq Data=Risk3; Tables age; Where status=‘full time’ Run; Proc sgplot data= Risk3; Histogram age/ scale=count; Where status =‘full time’ and decision in ( pass, overide, overiden); Run; I wrote the same steps and formula with score ( by replacing age by score). Now I am looking to create a macro using the same formulas as a base to plot the frequencies and SAS charts but on 3 others more variables time, arrears and income. Anyone knows how to proceed? Thank you indeed
... View more