在条形图中使用打火机自定义颜色

发布于 2024-12-05 03:30:31 字数 575 浏览 1 评论 0原文

请考虑:

 dalist = {{901, 503, 522, 1305}, {910, 512, 477, 1260}, 
           {847, 459, 556, 1275}, {799, 517, 527, 1197}}

 cogColors = {RGBColor[0, 0, 1], RGBColor[1, 0, 0], RGBColor[0, 1, 0], RGBColor[1, 1, 0]}

 BarChart[dalist, ChartStyle -> cogColors]

在此处输入图像描述

我不明白如何为列表和列表中的值分配颜色。

在这里,我的希望是为每个子列表(第一个子列表:{901, 503, 522, 1305})分配一种颜色(cogColors 的 Part[[]])。然后每个条形将是较暗/较亮但相似的颜色。以下是所需的输出 (ppt):

在此处输入图像描述

Please Consider :

 dalist = {{901, 503, 522, 1305}, {910, 512, 477, 1260}, 
           {847, 459, 556, 1275}, {799, 517, 527, 1197}}

 cogColors = {RGBColor[0, 0, 1], RGBColor[1, 0, 0], RGBColor[0, 1, 0], RGBColor[1, 1, 0]}

 BarChart[dalist, ChartStyle -> cogColors]

enter image description here

I don`t understand how to assign color to list and to value within the list.

Here my hope is to get each sublist ( first one being : {901, 503, 522, 1305}) assigned one color (Part[[]] of cogColors). Then each bar would be a darker/lighter but similar color. Below is the desired output (ppt) :

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦开始←不甜 2024-12-12 03:30:31
BarChart[dalist, ChartStyle -> {cogColors, Opacity /@ {0.4, 0.6, 0.8, 1}}]

enter image description here

症结在于ChartStyle的doc页面中的下面这句话:

采用 ChartStyle->{spec_1, spec_2, ...} 形式,嵌套列表中的 i, j, ... 元素
数据集具有通过应用spec_1[[i]]给出的样式,然后
spec_2[[j]]等

这意味着您必须找到具有累积效果的指令。不透明度和颜色的组合就有了这个。如果将多种颜色组合起来,最终会得到最后一种颜色。

BarChart[dalist, ChartStyle -> {cogColors, Opacity /@ {0.4, 0.6, 0.8, 1}}]

enter image description here

The crux lies in the following sentence in the doc page of ChartStyle:

With the form ChartStyle->{spec_1, spec_2, ...}, the i, j, ... element in a nested list of
datasets has a style given by applying spec_1[[i]], then
spec_2[[j]], etc.

This means you have to find directives that have cumulative effects. The combination of Opacity and colors has this. If you combine various colors you end up with the last one.

所谓喜欢 2024-12-12 03:30:31
BarChart[MapThread[
  Style, {dalist, 
   Transpose@
    Reverse@NestList[Lighter, {Red, Green, Blue, Yellow}, 3]}, 2]]

在此处输入图像描述

由 Verbeia 编辑

您可以使用 Blend 和这种 MapThreadStyle 的方法可以获得您想要的任何颜色组合,例如:

extColours = 
 Outer[Blend[{#1, GrayLevel[0.1]}, #2] &, cogColors, {0.2, 0.4, 0.6, 0.8}];

BarChart[MapThread[Style, {dalist, extColours}, 2]]

在此处输入图像描述

BarChart[MapThread[
  Style, {dalist, 
   Transpose@
    Reverse@NestList[Lighter, {Red, Green, Blue, Yellow}, 3]}, 2]]

enter image description here

Edit by Verbeia

You can use Blend and this approach of MapThread and Style to get whatever color combinations you want, eg:

extColours = 
 Outer[Blend[{#1, GrayLevel[0.1]}, #2] &, cogColors, {0.2, 0.4, 0.6, 0.8}];

BarChart[MapThread[Style, {dalist, extColours}, 2]]

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文