gpt4 book ai didi

python - Matplotlib:使用索引颜色值在颜色栏中使用不同颜色图的中心颜色

转载 作者:行者123 更新时间:2023-12-05 00:59:48 26 4
gpt4 key购买 nike

这部分是两个问题:

  • 如何使(发散的)颜色图围绕某个给定值居中?
  • 如何做到这一点,同时将数据中的索引映射到颜色图中的值? (下文进一步解释)

某些类型的数据,例如BMI分数,有一个自然的中点。在matplotlib中,有几个发散的colormaps .我希望颜色图的中心,即光谱的“中间”位于“理想”BMI 分数上,与绘制的 BMI 分数分布无关。

BMI 类别阈值为:bmi_threshold = [16, 17, 18.5, 25, 30, 35]

在下面的代码中,我制作了一个包含 300 个随机 BMI 值的散点图,x 轴为体重,y 轴为高度,如下图所示。

在第一张图片中,我使用 np.digitize(bmi, bmi_threshold) 作为 c-参数到 ax.scatter()-call,但是颜色条中的每个值也都在 range(7) 中,而我希望颜色条刻度在 BMI 分数中(大约 15-40)。 (bmixy 对应的 300 个随机 bmi 分数的数组)

BMI 阈值分布不均,因此与数字化类别索引的距离,例如在 23 之间,如果我只是更改颜色栏中的刻度标签,将无法正确表示。

在与如下所示代码一起使用的第二张图片中,似乎没有正确地以“理想”BMI 分数 22 为中心。我尝试使用“Make a scatter colorbar display only a subset of the vmin/vmax”中的技术来调整颜色栏中的颜色范围,但它似乎不像(我)预期的那样工作。

此外,我想我可以通过在 cmap( np.linspace(low, high, 7)) 到 [0, 1] 之外的值,例如[-0.5,1.5],但我更难以将颜色条居中。

我做错了什么,我该如何做到这一点?

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm
import matplotlib as mpl

np.random.seed(4242)

# Define BMI class thresholds
bmi_thresholds = np.array([16, 17, 18.5, 25, 30, 35])

# Range to sample BMIs from
max_bmi = max(bmi_thresholds)*0.9
min_bmi = min(bmi_thresholds)*0.3

# Convert meters into centimeters along x-axis
@mpl.ticker.FuncFormatter
def m_to_cm(m, pos):
return f'{int(m*100)}'

# Number of samples
n = 300

# Heights in range 0.50 to 2.20 meters
x = np.linspace(0.5, 2.2, n)
# Random BMI values in range [min_bmi, max_bmi]
bmi = np.random.rand(n)*(max_bmi-min_bmi) + min_bmi
# Compute corresponding weights
y = bmi * x**2

# Prepare plot with labels, etc.
fig, ax = plt.subplots(figsize=(10,6))
ax.set_title(f'Random BMI values. $n={n}$')
ax.set_ylabel('Weight in kg')
ax.set_xlabel('Height in cm')
ax.xaxis.set_major_formatter(m_to_cm)
ax.set_ylim(min(y)*0.95, max(y)*1.05)
ax.set_xlim(min(x), max(x))

# plot bmi class regions (i.e. the "background")
for i in range(len(bmi_thresholds)+1):
area_min = bmi_thresholds[i-1] if i > 0 else 0
area_max = bmi_thresholds[i] if i < len(bmi_thresholds) else 10000#np.inf
area_color = 'g' if i == 3 else 'y' if i in [2,4] else 'orange' if i in [1,5] else 'r'
ax.fill_between(x, area_min * x**2, area_max * x**2, color=area_color, alpha=0.2, interpolate=True)

# Plot lines to emphasize regions, and additional bmi score lines (i.e. 10 and 40)
common_plot_kwargs = dict(alpha=0.8, linewidth=0.5)
for t in (t for t in np.concatenate((bmi_thresholds, [10, 40]))):
style = 'g-' if t in [18.5, 25] else 'r-' if t in [10,40] else 'k-'
ax.plot(x, t * x**2, style, **common_plot_kwargs)

# Compute offset from target_center to median of data range
target_center = 22
mid_bmi = np.median(bmi)
s = max(bmi) - min(bmi)
d = target_center - mid_bmi
# Use offset to normalize offset as to the range [0, 1]
high = 1 if d < 0 else (s-d)/s
low = 0 if d >= 0 else -d/s


# Use normalized offset to create custom cmap to centered around ideal BMI?
cmap = plt.get_cmap('PuOr')
colors = cmap(np.linspace(low, high, 7))
cmap = mpl.colors.LinearSegmentedColormap.from_list('my cmap', colors)

# plot random BMIs
c = np.digitize(bmi, bmi_thresholds)
sax = ax.scatter(x, y, s=15, marker='.', c=bmi, cmap=cmap)

cbar = fig.colorbar(sax, ticks=np.concatenate((bmi_thresholds, [22, 10, 40])))
plt.tight_layout()

最佳答案

你可以使用 matplotlib 内置函数来做同样的事情:

matplotlib.colors.TwoSlopeNorm

见:https://matplotlib.org/3.2.2/gallery/userdemo/colormap_normalizations_diverging.html

关于python - Matplotlib:使用索引颜色值在颜色栏中使用不同颜色图的中心颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52411520/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com