matplotlib 中的二维数组绘图
我试图用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想为每列使用自定义颜色,那么最好的方法是使用循环显式绘制每列:
您可能必须使用 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:
You may have to use
2darray.T
, I'm not sure, and I can't check right now.