-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mean comparisons with spatial model #124
Comments
Look at confidence interval for BLUPs |
It may be different if genotype are random or not
|
vcov in SpATS output may be useful as, according to help, it is nverse of the coefficient matrix of the mixed models equations. The inverse is needed for the computation of standard errors. For computational issues, the inverse is returned as a list: C11_inv corresponds to the coefficient matrix associated with the genotype; C22_inv corresponds to the coefficient matrix associated with the spatial, the fixed and the random components; and C12_inv and C21_inv correspond to the “combination” of both. C11_inv can be used to get confidence interval in order then to do mean comparisons |
|
Regarding LSD.test, it gives coherent results with the following code:
Output from BLUPs ggplot and groups with LSD.test are coherent ! |
code updated in v0.25 |
is mean comparisons method ok ?
In order to assess mean comparisons, I used the
agricolae::LSD.test
functionWhen doing
?LSD.test
, in example, we can seeSo I decided to follow the same logic in
model_spatial
:The degree of freedom of the residuals are the effective degree of freedom
And then in
mean_comparisons.check_model_spatial
:I hope it is correct ...
The text was updated successfully, but these errors were encountered: