Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. Genotype Trait Value
  2. 1 Biomass 1.28
  3. 1 Biomass 1.07
  4. 1 Biomass 1.97
  5. 1 TLength 1070.7
  6. 1 TLength 875.14
  7. 1 TLength 1547.93
  8.  
  9. PROC MIXED DATA=multi56 covtest cl;
  10. WHERE trait IN ("Biomass","TLength")
  11. CLASS genotype trait;
  12. MODEL value=trait;
  13. RANDOM trait/SUBJECT=genotype TYPE=un;
  14. /* The RANDOM statement tells SAS to estimate the 2 x 2
  15. among genotype variance component matrix for the two traits
  16. listed in the where statement */
  17. RUN;
  18.  
  19. Covariance Parameter Estimates
  20. Cov Parm Subject Estimate Standard Error Z Value Pr Z Alpha Low Upper
  21. UN(1,1) Genotype 0 . . . . . .
  22. UN(2,1) Genotype 50450 19630 2.57 0.0102 0.05 11975 88924
  23. UN(2,2) Genotype 316010 90306 3.50 0.0002 0.05 193511 606860
  24. Residual 55618 3437.23 16.18 <.0001 0.05 49451 63021
  25.  
  26. PROC MIXED DATA=multi56 covtest cl NOBOUND ;
  27.  
  28. Iteration History
  29. Iteration Evaluations -2 Res Log Like Criterion
  30. 0 1 10109.62259781
  31.  
  32. WARNING: Stopped because of infinite likelihood.
  33.  
  34. Covariance Parameter Values
  35. At Last Iteration
  36. Cov Parm Subject Estimate
  37. UN(1,1) genotype -34470
  38. UN(2,1) genotype 249.06
  39. UN(2,2) genotype 188855
  40. Residual 83814
  41.  
  42. NOTE: 125 observations are not included because of missing values.
  43. WARNING: Stopped because of infinite likelihood.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement