I'd like to get the Univariate Tests section from the anova.manyglm
's result but the default attributes give two separate tables so I am trying to merge them such that the test and the p-value columns of the same variable stay next to each other.
library(mvabund)
data("Tasmania")
attach(Tasmania)
tasmvabund=mvabund(copepods)
tas_mod = manyglm(tasmvabund~ block*treatment)
tas_sum <- summary.manyglm(tas_mod)
tas_aov <- anova.manyglm(tas_mod, resamp = "perm.resid", p.uni= "adjusted", nBoot = 50)
> str(tas_aov)
List of 11
$ family : chr "negative.binomial"
$ p.uni : chr "adjusted"
$ test : chr "Dev"
$ cor.type : chr "I"
$ resamp : chr "perm.resid"
$ nBoot : num 50
$ shrink.param: num [1:4] 0 0 0 0
$ n.bootsdone : num 50
$ table :'data.frame': 4 obs. of 4 variables:
..$ Res.Df : int [1:4] 15 12 11 8
..$ Df.diff : num [1:4] NA 3 1 3
..$ Dev : num [1:4] NA 117.5 66.9 37.4
..$ Pr(>Dev): num [1:4] NA 0.0196 0.0196 0.0588
..- attr(*, "heading")= chr [1:2] "Analysis of Deviance Table\n" "Model: tasmvabund ~ block * treatment"
..- attr(*, "title")= chr "\nMultivariate test:\n"
$ uni.p : num [1:4, 1:12] NA 0.4706 0.0196 0.451 NA ...
..- attr(*, "title")= chr "Univariate Tests:"
..- attr(*, "dimnames")=List of 2
.. ..$ : chr [1:4] "(Intercept)" "block" "treatment" "block:treatment"
.. ..$ : chr [1:12] "Ameira" "Adopsyllus" "Ectinosoma" "Ectinosomat" ...
$ uni.test : num [1:4, 1:12] NA 4.93 13.94 6.35 NA ...
..- attr(*, "title")= chr "Univariate Tests:"
..- attr(*, "dimnames")=List of 2
.. ..$ : chr [1:4] "(Intercept)" "block" "treatment" "block:treatment"
.. ..$ : chr [1:12] "Ameira" "Adopsyllus" "Ectinosoma" "Ectinosomat" ...
- attr(*, "class")= chr "anova.manyglm"
This prints the Multivariate section only.
tas_aov$table
'data.frame': 4 obs. of 4 variables:
$ Res.Df : int 15 12 11 8
$ Df.diff : num NA 3 1 3
$ Dev : num NA 117.5 66.9 37.4
$ Pr(>Dev): num NA 0.0196 0.0196 0.0588
- attr(*, "heading")= chr [1:2] "Analysis of Deviance Table\n" "Model: tasmvabund ~ block * treatment"
- attr(*, "title")= chr "\nMultivariate test:\n"
This prints the p-values of the Univariate tests only.
tas_aov$uni.p
str(tas_aov$uni.p)
num [1:4, 1:12] NA 0.4706 0.0196 0.451 NA ...
- attr(*, "title")= chr "Univariate Tests:"
- attr(*, "dimnames")=List of 2
..$ : chr [1:4] "(Intercept)" "block" "treatment" "block:treatment"
..$ : chr [1:12] "Ameira" "Adopsyllus" "Ectinosoma" "Ectinosomat" ...
And this prints the test table only.
tas_aov$uni.test
str(tas_aov$uni.test)
num [1:4, 1:12] NA 4.93 13.94 6.35 NA ...
- attr(*, "title")= chr "Univariate Tests:"
- attr(*, "dimnames")=List of 2
..$ : chr [1:4] "(Intercept)" "block" "treatment" "block:treatment"
..$ : chr [1:12] "Ameira" "Adopsyllus" "Ectinosoma" "Ectinosomat" ...
So I am trying to merge them and then arrange the columns by names but I haven't succeeded yet.
tab <- cbind(tas_aov$uni.p, tas_aov$uni.test)
tab[ , order(names(tab))]
Error in order(names(tab)) : argument 1 is not a vector
Ideally, I'd like just the original Univariate section because it has the column names neatly printed, i.e., the test next to the p-values but I am happy with just merging the tables. Thanks a lot for any hints.
One approach would be to pivot both matrices longer and then inner join them:
If you prefer, you could pivot back to wide: