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

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

          <bdo id='yorUE'></bdo><ul id='yorUE'></ul>
      1. <tfoot id='yorUE'></tfoot>

        <legend id='yorUE'><style id='yorUE'><dir id='yorUE'><q id='yorUE'></q></dir></style></legend>

        海运中的自定义调色板

        时间:2024-08-20
          <tbody id='UuLhp'></tbody>
        <i id='UuLhp'><tr id='UuLhp'><dt id='UuLhp'><q id='UuLhp'><span id='UuLhp'><b id='UuLhp'><form id='UuLhp'><ins id='UuLhp'></ins><ul id='UuLhp'></ul><sub id='UuLhp'></sub></form><legend id='UuLhp'></legend><bdo id='UuLhp'><pre id='UuLhp'><center id='UuLhp'></center></pre></bdo></b><th id='UuLhp'></th></span></q></dt></tr></i><div id='UuLhp'><tfoot id='UuLhp'></tfoot><dl id='UuLhp'><fieldset id='UuLhp'></fieldset></dl></div>
        • <bdo id='UuLhp'></bdo><ul id='UuLhp'></ul>
        • <legend id='UuLhp'><style id='UuLhp'><dir id='UuLhp'><q id='UuLhp'></q></dir></style></legend>

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

                <tfoot id='UuLhp'></tfoot>
                • 本文介绍了海运中的自定义调色板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个散点图,它应该显示键长随温度的变化。我想给每个温度指定一种特定的颜色,但似乎行不通-Plot使用默认的海运调色板。有没有办法将温度映射到颜色,并让海运公司使用它?

                  import pandas as pd
                  import matplotlib.pyplot as plt
                  import seaborn as sns
                  
                  palette = ["#090364", "#091e75", "#093885", "#085396", "#086da6", 
                             "#0888b7", "#08a2c7", "#07bdd8", "#07d7e8", "#07f2f9", 
                             "#f9ac07", "#c77406", "#963b04", "#640303"]
                  
                  sns.set_style("whitegrid")
                  sns.set_palette(palette)
                  plot = sns.scatterplot(df.loc[:,'length'], 
                                         df.loc[:,'type'],
                                         hue = df.loc[:,'temperature'],
                                         legend = False, 
                                         s = 200)
                  

                  推荐答案

                  我想出来了。您必须将颜色数粘贴到调色板中:

                  sns.set_style("whitegrid")
                  plot = sns.scatterplot(df.loc[:,'length'], 
                                         df.loc[:,'type'],
                                         hue = df.loc[:,'temperature'],
                                         palette=sns.color_palette(palette, 14),
                                         legend = False, 
                                         s = 200)
                  

                  这篇关于海运中的自定义调色板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:海运热图,自定义刻度值 下一篇:如何调整海运猫图的大小

                  相关文章

                  <legend id='ZHPcY'><style id='ZHPcY'><dir id='ZHPcY'><q id='ZHPcY'></q></dir></style></legend>

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

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

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