matplotlib 中的二维数组绘图

发布于 2024-10-25 19:07:01 字数 189 浏览 0 评论 0原文

我试图用 pyplot 绘制 2D 数组与 1D 数组。我可以毫无问题地做到这一点,并且 2D 数组中的列被视为两组不同的 Y 数据,这就是我想要的。我不知道如何为二维数组中的每一列指定不同的颜色。例如,如果我使用 pyplot.plot(1darray, 2darray, "r-") ,二维数组中的每一列都会绘制为红色。我应该修改标准颜色图还是有更聪明的方法?

I was trying to plot a 2D array vs a 1D array with pyplot. I can do that with no problems and columns in the 2D array are treated like two different sets of Y datas, which is what i want. What i don't know is how to specify a different color for every column in the 2d array. if i use pyplot.plot(1darray, 2darray, "r-") every column in 2d array is plotted red for example. Should i modify the standard color map or is there a smarter way?

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

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

发布评论

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

评论(1

蹲在坟头点根烟 2024-11-01 19:07:01

如果您想为每列使用自定义颜色,那么最好的方法是使用循环显式绘制每列:

for column, colcolor in zip(2darray, colors):
    pyplot.plot(2darray, column, "-", color=colcolor)

您可能必须使用 2darray.T,我不确定,但我可以现在不检查。

If you want to use custom colors for each column, then the best approach is to plot each column explicitly using a loop:

for column, colcolor in zip(2darray, colors):
    pyplot.plot(2darray, column, "-", color=colcolor)

You may have to use 2darray.T, I'm not sure, and I can't check right now.

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