matplotlib:可以改变背景颜色吗?

发布于 2024-11-16 11:46:52 字数 283 浏览 4 评论 0原文

matplotlib python: 如何根据给定的列更改线图的背景颜色? 假设我有以下数据文件,

1. 0
4. 0
2. 0
1. 1
2. 1
3. 1
3. 2
1. 2
2. 2

第一列代表 y 值,第二列应控制背景颜色。比如说,它在白灰色交替背景(类似斑马)上绘制(黑色)线,并沿 x 方向进一步前进,其中只要第二列中的整数递增,颜色就会发生转变。或其他可能的解决方案:使用第二列作为函数参数来确定背景颜色。

如何使用 matlibplot 来做到这一点?

matplotlib python:
How do you change the background color of a line plot according to a given column?
Say I have the following data file

1. 0
4. 0
2. 0
1. 1
2. 1
3. 1
3. 2
1. 2
2. 2

The first column represents the y-values, and the 2nd column should control the background color. Say, it plots the (black) line on a white-gray alternating background (zebra-like) as proceeding further in x-direction, where the transition in color occurs anytime the integer in the 2nd column increments. Or other possible solution: Use 2nd column as function argument to determine background color.

How would one do this with matlibplot?

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

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

发布评论

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

评论(1

那小子欠揍 2024-11-23 11:46:52

这个有效:

    plt.axvspan(x, x2, facecolor='g', alpha=0.5)

其中facecolor是前景色

This one works:

    plt.axvspan(x, x2, facecolor='g', alpha=0.5)

where facecolor is the foreground color

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