I am using the GLIMMIX model to do an age-period-cohort analysis. I need a graph shows how the predicted probability of Y_var for each education level changes by COHORT. Just as the picture attached. I am new at SAS. So how can I get the graph? or how can i get the predicted numbers by education by cohort?

********* HERE IS THE CODE---------------------------;
proc glimmix data=NHIS_2 maxopt=250000;
class PERIOD COHORT EDUCATION RACE SEX;
model Y_var (event='1') = AGE AGE_2 SEX RACE EDUCATION EDUCATION*AGE /solution CL
dist=binary;
random intercept SEX RACE /sub=PERIOD solution;
random intercept /sub=COHORT solution;
covtest GLM / WALD;
NLOPTIONS TECHNIQUE=NRRIDG;
RUN;