Using the lines function in proc glimmix and getting this table, how do i change the order of the "id" i want it to be n0,n15,n60,n100,n200 so i can show this graph a bit better in my presentation. Is there any way to do this
proc glimmix;
class id inoc ;
model shootdw=id inoc id*inoc;
lsmeans id*inoc/ pdiff adj=tukey ;
slice id*inoc/sliceby=inoc linesTABLE ;
run;
this is my current code