Colorbar minimum and maximum(颜色条最小值和最大值)
问题描述
如何手动更改颜色条的最小值和最大值?例如.如何将下图中颜色条的最小值设置为 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.
这篇关于颜色条最小值和最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:颜色条最小值和最大值
基础教程推荐
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 包装空间模型 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
