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

      <legend id='t1WyX'><style id='t1WyX'><dir id='t1WyX'><q id='t1WyX'></q></dir></style></legend>
        <bdo id='t1WyX'></bdo><ul id='t1WyX'></ul>

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

        <tfoot id='t1WyX'></tfoot>

      1. 如何在海运地块中设置色调顺序

        How to set the hue order in Seaborn plots(如何在海运地块中设置色调顺序)
          <bdo id='H25nE'></bdo><ul id='H25nE'></ul>
            <tbody id='H25nE'></tbody>

          <tfoot id='H25nE'></tfoot>

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

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

                • 本文介绍了如何在海运地块中设置色调顺序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是新来Seborn的,这可能是一个非常微不足道的问题,但我正在为解决这个问题而苦苦挣扎。我有一个名为titanic的Pandas数据集,我正在使用以下代码绘制Seborn官方文档中描述的条形图:

                  import seaborn as sns
                  
                  titanic = sns.load_dataset("titanic")
                  sns.catplot(x="sex", y="survived", hue="class", kind="bar", data=titanic)
                  

                  这将生成以下绘图:

                  如您所见,色调由class表示。问题是:如何手动选择色相顺序以便可以反转当前色调顺序?

                  推荐答案

                  要手动选择海运绘图的色相顺序,您必须将所需的顺序定义为列表,然后将其作为参数传递给绘图函数hue_order。以下代码可以工作:

                  import seaborn as sns
                  
                  titanic = sns.load_dataset("titanic")
                  hue_order = ['Third', 'Second', 'First']
                  sns.catplot(x="sex", y="survived", hue="class", data=titanic, hue_order=hue_order, kind="bar")
                  

                  这篇关于如何在海运地块中设置色调顺序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                  Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                  Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)
                  Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                  Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                  Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
                  <tfoot id='p7UWu'></tfoot>
                  <legend id='p7UWu'><style id='p7UWu'><dir id='p7UWu'><q id='p7UWu'></q></dir></style></legend>
                        <tbody id='p7UWu'></tbody>
                    • <small id='p7UWu'></small><noframes id='p7UWu'>

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