Hello, I am looking for someone to help me out with some advice with the code for my project. My experiment is a split plot design with 4 replicates, my main plot are the treatments and my sub-plot are cultivars, over a period of 5 years.with 6 variables I ran my code using Proc mixed for normality of variances for each variable and each year(loc). Is this code correct? proc mixed data=f order=data plots=all; class loc rep cv trt; model lsds=trt cv trt*cv/ddfm=kr outp=ORP_data1 residual; random rep(trt) trt/solution; lsmeans cv trt trt*cv/ adjust=tukey; run; proc plot data=ORP_data1; plot resid*pred; run; proc univariate data=ORP_data1 normal plot; var resid; run; Also , I want to know how do I get to combine the years for each variable and get to know if they can be combined (code). And if it's better using proc glimmix. I now that Levene can be use for this purpose but I think is not reliable for split-plot designs. Thank you
... View more