BookmarkSubscribeRSS Feed
mbakare
Calcite | Level 5

In a field trial established as RCBD, rep is a block effect and gen is a random effect of genotype. The genotypic blups of each genetic line is derived as

proc mixed data= sampledat method=reml;

class rep gen

model  yield = rep;

random gen/solution

run;

quit;

 

The random statement return the genotypic value of each gen.How do I obtain the mean variance of a diiference of two genotypic blups?

 

Thanks

1 REPLY 1
jiltao
SAS Super FREQ

You can use an ESTIMATE statement in PROC MIXED to compare two genotypes:

estimate 'gen1-gen2' | gen 1 -1;

The predicted difference and the standard error will be produced.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 489 views
  • 1 like
  • 2 in conversation