Customize ANOVA table in Mathematica
Is there a way to customize the way ANOVA table look ? Without to much effort manipu开发者_开发问答lating each element of the list ?
You could try Grid[(ANOVA /. yourresult)]
and the various styling options for Grids described in the documentation. (see also the tutorial)
If there is a hidden TableForm
on the right hand side of that rule, you might need to do something like Grid[InputForm[(ANOVA /. yourresult)]]
.
精彩评论