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

    <tfoot id='oukv9'></tfoot>

    • <bdo id='oukv9'></bdo><ul id='oukv9'></ul>

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

      1. <legend id='oukv9'><style id='oukv9'><dir id='oukv9'><q id='oukv9'></q></dir></style></legend>

        使用 pandas 交叉表创建条形图

        时间:2024-08-21

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

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

                    <tbody id='R6PU7'></tbody>
                  本文介绍了使用 pandas 交叉表创建条形图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试使用我的数据框在海运中创建堆叠条形图。

                  我首先在 pandas 中生成了一个交叉表,如下所示:

                  pd.crosstab(df['Period'], df['Mark'])
                  

                  返回:

                    Mark            False  True  
                  Period BASELINE    583    132
                         WEEK 12     721      0 
                         WEEK 24     589    132 
                         WEEK 4      721      0
                  

                  我想使用海运为全余创建一个堆叠的条形图,这就是我在我的图表的睡觉中使用的。但是,我很难做到这一点,因为我无法为交叉表编制索引。

                  我已经能够使用.plot.barh(stacked=True)在 pandas 身上制作我想要的情节,但在海运方面没有运气。你知道我该怎么做吗?

                  推荐答案

                  • 如您所说,您可以使用 pandas 创建堆叠条形图。您想要有一个海运绘图的论点是无关紧要的,因为每个海运绘图和每个 pandas 绘图最终都只是matplotlib对象,因为这两个库的绘图工具仅仅是matplotlib包装器。
                  • 这里有一个完整的解决方案(使用@Andrew_Reess的答案创建数据)。
                  • 测试于python 3.8.11pandas 1.3.2matplotlib 3.4.3seaborn 0.11.2
                  import numpy as np 
                  import pandas as pd
                  import seaborn as sns
                  import matplotlib.pyplot as plt
                  
                  n = 500
                  np.random.seed(365)
                  mark = np.random.choice([True, False], n)
                  periods = np.random.choice(['BASELINE', 'WEEK 12', 'WEEK 24', 'WEEK 4'], n)
                  
                  df = pd.DataFrame({'mark': mark, 'period': periods})
                  ct = pd.crosstab(df.period, df.mark)
                      
                  ax = ct.plot(kind='bar', stacked=True, rot=0)
                  ax.legend(title='mark', bbox_to_anchor=(1, 1.02), loc='upper left')
                  
                  # add annotations if desired
                  for c in ax.containers:
                      
                      # set the bar label
                      ax.bar_label(c, label_type='center')
                  

                  这篇关于使用 pandas 交叉表创建条形图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:具有多个分布的海运距离图/离散图 下一篇:Seborn.countlot:按计数对类别进行排序

                  相关文章

                    <bdo id='I1UfW'></bdo><ul id='I1UfW'></ul>

                    1. <i id='I1UfW'><tr id='I1UfW'><dt id='I1UfW'><q id='I1UfW'><span id='I1UfW'><b id='I1UfW'><form id='I1UfW'><ins id='I1UfW'></ins><ul id='I1UfW'></ul><sub id='I1UfW'></sub></form><legend id='I1UfW'></legend><bdo id='I1UfW'><pre id='I1UfW'><center id='I1UfW'></center></pre></bdo></b><th id='I1UfW'></th></span></q></dt></tr></i><div id='I1UfW'><tfoot id='I1UfW'></tfoot><dl id='I1UfW'><fieldset id='I1UfW'></fieldset></dl></div>

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

                    2. <tfoot id='I1UfW'></tfoot>

                    3. <legend id='I1UfW'><style id='I1UfW'><dir id='I1UfW'><q id='I1UfW'></q></dir></style></legend>