gpt4 book ai didi

formatting - 在 Mathematica 中更改 "Parameter Table"的背景

转载 作者:行者123 更新时间:2023-12-04 06:14:24 25 4
gpt4 key购买 nike

请考虑 :

listA = {5, 10, 6, 9, 10, 9, 8, 0, 4, 2};
listB = {2, 8, 7, 1, 7, 6, 10, 5, 1, 5};

Column[Function[listNo,
LinearModelFit[listNo, x, x]["ParameterTable"]] /@
{listA, listB}]

enter image description here

继上一个关于 Customize ANOVA Table in Mathematica 的问题之后,我想知道我怎样才能改变上面的背景。我希望每个都有不同的背景颜色。

使用贝利撒留技巧,我能够做到以下几点,但是,现在它们是彩色的,我意识到这些 table 的大小不一样。请让我知道是否有办法解决该显示问题。

Blockquote

最佳答案

你可以做类似的事情

Column[Style[#[[1]], Background -> #[[2]]] 
& /@ ({LinearModelFit[#[[1]], x, x]["ParameterTable"], #[[2]]}
& /@ {{listA, Yellow}, {listB, Red}})]

enter image description here

编辑

如果你想要一个直接的结局,你就必须多解决这个问题。就像是:
listA = {5, 10, 6, 9, 10, 9, 8, 0, 4, 2};
listB = {2, 8, 7, 1, 7, 6, 10, 5, 1, 5};
tit = {"", "Estimate", "Standard Error", "t\[Hyphen]Statistic",
"P\[Hyphen]Value"};


Grid[Flatten[
Join[{{tit}}, (Join[{#[[1]]}, #[[2]]] & /@
Partition[(Riffle[#["BasisFunctions"], #["ParameterTableEntries"]] &@
LinearModelFit[#, x, x]), 2] & /@ {listA, listB})], 1],
Background -> {{White, {None}}, {None, {Pink, Pink, Yellow, Yellow}}},
Dividers -> {2 -> True, 2 -> True},
Frame -> {{True}, {True}},
FrameStyle -> Directive[Thickness[2], Blue]]

enter image description here

关于formatting - 在 Mathematica 中更改 "Parameter Table"的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7438817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com