• <small id='Zpjh1'></small><noframes id='Zpjh1'>

  • <i id='Zpjh1'><tr id='Zpjh1'><dt id='Zpjh1'><q id='Zpjh1'><span id='Zpjh1'><b id='Zpjh1'><form id='Zpjh1'><ins id='Zpjh1'></ins><ul id='Zpjh1'></ul><sub id='Zpjh1'></sub></form><legend id='Zpjh1'></legend><bdo id='Zpjh1'><pre id='Zpjh1'><center id='Zpjh1'></center></pre></bdo></b><th id='Zpjh1'></th></span></q></dt></tr></i><div id='Zpjh1'><tfoot id='Zpjh1'></tfoot><dl id='Zpjh1'><fieldset id='Zpjh1'></fieldset></dl></div>
    <legend id='Zpjh1'><style id='Zpjh1'><dir id='Zpjh1'><q id='Zpjh1'></q></dir></style></legend>
      <bdo id='Zpjh1'></bdo><ul id='Zpjh1'></ul>
  • <tfoot id='Zpjh1'></tfoot>

        Python中一个图形中的多个绘图

        Multiple plots in one figure in Python(Python中一个图形中的多个绘图)

                <tfoot id='9dz88'></tfoot>

                <legend id='9dz88'><style id='9dz88'><dir id='9dz88'><q id='9dz88'></q></dir></style></legend>
                <i id='9dz88'><tr id='9dz88'><dt id='9dz88'><q id='9dz88'><span id='9dz88'><b id='9dz88'><form id='9dz88'><ins id='9dz88'></ins><ul id='9dz88'></ul><sub id='9dz88'></sub></form><legend id='9dz88'></legend><bdo id='9dz88'><pre id='9dz88'><center id='9dz88'></center></pre></bdo></b><th id='9dz88'></th></span></q></dt></tr></i><div id='9dz88'><tfoot id='9dz88'></tfoot><dl id='9dz88'><fieldset id='9dz88'></fieldset></dl></div>
                  <tbody id='9dz88'></tbody>
                • <bdo id='9dz88'></bdo><ul id='9dz88'></ul>
                • <small id='9dz88'></small><noframes id='9dz88'>

                • 本文介绍了Python中一个图形中的多个绘图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是Python的新手,我正在尝试使用matplotlib在同一张图中绘制多条线。 Y轴的值存储在字典中,在下面的代码中我在X轴上设置相应的值

                  我的代码如下:

                  for i in range(len(ID)):
                  AxisY= PlotPoints[ID[i]]
                  if len(AxisY)> 5:
                      AxisX= [len(AxisY)]
                      for i in range(1,len(AxisY)):
                          AxisX.append(AxisX[i-1]-1)
                      plt.plot(AxisX,AxisY)
                      plt.xlabel('Lead Time (in days)')
                      plt.ylabel('Proportation of Events Scheduled')
                      ax = plt.gca()
                      ax.invert_xaxis()
                      ax.yaxis.tick_right()
                      ax.yaxis.set_label_position("right")
                      plt.show()
                  

                  但是我得到的是单独的数字和一个接一个的图。有人能帮我找出我的代码出了什么问题吗?为什么我不能生成多行打印?非常感谢!

                  推荐答案

                  这非常简单:

                  import matplotlib.pyplot as plt
                  
                  plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
                  plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
                  plt.legend(loc='best')
                  plt.show()
                  

                  您可以继续添加plt.plot任意次数。对于line type,您需要先指定颜色。所以对于蓝色,它是b。对于一条法线,它是-。例如:

                  plt.plot(total_lengths, sort_times_heap, 'b-', label="Heap")
                  

                  这篇关于Python中一个图形中的多个绘图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
                  <i id='iW05Y'><tr id='iW05Y'><dt id='iW05Y'><q id='iW05Y'><span id='iW05Y'><b id='iW05Y'><form id='iW05Y'><ins id='iW05Y'></ins><ul id='iW05Y'></ul><sub id='iW05Y'></sub></form><legend id='iW05Y'></legend><bdo id='iW05Y'><pre id='iW05Y'><center id='iW05Y'></center></pre></bdo></b><th id='iW05Y'></th></span></q></dt></tr></i><div id='iW05Y'><tfoot id='iW05Y'></tfoot><dl id='iW05Y'><fieldset id='iW05Y'></fieldset></dl></div>
                  <legend id='iW05Y'><style id='iW05Y'><dir id='iW05Y'><q id='iW05Y'></q></dir></style></legend>

                          • <bdo id='iW05Y'></bdo><ul id='iW05Y'></ul>
                            <tfoot id='iW05Y'></tfoot>

                              <tbody id='iW05Y'></tbody>

                            <small id='iW05Y'></small><noframes id='iW05Y'>