本文介绍了在Mathematica中自定义ANOVA表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以自定义ANOVA表的外观?无需费力即可操纵列表的每个元素?

Is there a way to customize the way ANOVA table look ? Without to much effort manipulating each element of the list ?

推荐答案

您可以尝试Grid[(ANOVA /. yourresult)]以及网格的各种样式选项在文档中进行了描述. (另请参见教程)

You could try Grid[(ANOVA /. yourresult)] and the various styling options for Grids described in the documentation. (see also the tutorial)

如果该规则的右侧有一个隐藏的TableForm,则可能需要执行类似Grid[InputForm[(ANOVA /. yourresult)]]的操作.

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)]].

这篇关于在Mathematica中自定义ANOVA表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-09 23:11