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

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

    1. <tfoot id='V1tSZ'></tfoot>

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

        Seborn,更改色条的字体大小

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

                • <bdo id='z1c6j'></bdo><ul id='z1c6j'></ul>
                • <small id='z1c6j'></small><noframes id='z1c6j'>

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

                  本文介绍了Seborn,更改色条的字体大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想更改热图颜色条的字体大小。

                  以下是我的代码:

                  import seaborn as sns
                  import matplotlib.pyplot as plt
                  from numpy import arange
                  x = arange(25).reshape(5, 5)
                  cmap = sns.diverging_palette(220, 20, sep=20, as_cmap=True)
                  ax = sns.heatmap(x, cmap=cmap)
                  plt.show()
                  

                  我可以使用plt.tick_params(axis='both', labelsize=20)更改刻度标签。但是,颜色栏字体大小不会更改。 有办法做到这一点吗?

                  推荐答案

                  您可以使用seaborn.set()方法更改字体比例,将font_scale参数设置为所需的比例,有关详细信息,请参阅海运documentation。

                  例如,比例为3的绘图:

                  import seaborn as sns
                  import matplotlib.pyplot as plt
                  from numpy import arange
                  # here set the scale by 3
                  sns.set(font_scale=3)
                  x = arange(25).reshape(5, 5)
                  cmap = sns.diverging_palette(220, 20, sep=20, as_cmap=True)
                  ax = sns.heatmap(x, cmap=cmap)
                  plt.show()
                  

                  这篇关于Seborn,更改色条的字体大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在海运绘图中设置x轴记号标签 下一篇:在海运显示图/直方图函数中绘制适合直方图的高斯曲线(而不是DISPLOT)

                  相关文章

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

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

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