<tfoot id='UEhhK'></tfoot>

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

    1. <small id='UEhhK'></small><noframes id='UEhhK'>

      • <bdo id='UEhhK'></bdo><ul id='UEhhK'></ul>
      1. 颜色条最小值和最大值

        时间:2023-09-28

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

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

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

                    <tbody id='IyFA7'></tbody>
                • 本文介绍了颜色条最小值和最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何手动更改颜色条的最小值和最大值?例如.如何将下图中颜色条的最小值设置为 0?

                  How can I manually change the minimum and maximum value of a colorbar in plotly? E.g. how can I set the minimum of the colorbar in the following plot to 0?

                  import plotly.express as px
                  import numpy as np
                  df = px.data.gapminder().query("year == 2007")
                  fig = px.treemap(df, path=[px.Constant("world"), 'continent', 'country'], values='pop',
                                    color='lifeExp', hover_data=['iso_alpha'],
                                    color_continuous_scale='RdBu',
                                    color_continuous_midpoint=np.average(df['lifeExp'], weights=df['pop']))
                  fig.update_layout(margin = dict(t=50, l=25, r=25, b=25))
                  fig.show()
                  
                  

                  推荐答案

                  您可以将 range_color=[min, max] 传递给 px.treemap() :

                  You can pass range_color=[min, max] to px.treemap() :

                  range_color(两个数字的列表)- 如果提供,则覆盖在连续色标上自动缩放.

                  range_color (list of two numbers) – If provided, overrides auto-scaling on the continuous color scale.

                  例如,您可以传递任意值:

                  For example you can pass arbitrary values :

                  range_color=[0, 100]
                  

                  或设置适合数据框最小值和最大值的范围:

                  or set a range that fits the dataframe min and max values :

                  range_color=[df['lifeExp'].min(), df['lifeExp'].max()]
                  

                  此外,您可能希望使用中值作为颜色中点而不是平均值,以更好地说明国家之间的lifeExp"差异.

                  Also, you migth want to use the median as color midpoint instead of the average to better illustrate 'lifeExp' discrepancies between countries.

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

                  上一篇:Plotly:如何以 Root 样式绘制直方图,仅显示直方图的轮廓? 下一篇:Plotly-Dash 存在未知问题并创建“加载依赖项时出错";通过使用 Python-pandas.date

                  相关文章

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

                  2. <legend id='LXZTh'><style id='LXZTh'><dir id='LXZTh'><q id='LXZTh'></q></dir></style></legend>

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