gpt4 book ai didi

python - 从 matplotlib 样式获取颜色

转载 作者:太空宇宙 更新时间:2023-11-04 11:19:59 25 4
gpt4 key购买 nike

<分区>

我想实现的目标:

我想在一张图上创建多个饼图。他们都共享一些类别,但有时有不同的类别。显然,我希望所有相同的类别都具有相同的颜色。

这就是为什么我创建了一个将类别(= 标签)链接到颜色的字典。这样我就可以指定饼图的颜色。但我想使用 ggplot 颜色(matplotlib.style.style.use('ggplot') 附带)。我怎样才能将这些颜色输入到我的字典中?

# set colors for labels
color_dict = {}
for i in range(0, len(data_categories)):
color_dict[data_categories[i]] = ???

# apply colors
ind_label = 0
for pie_wedge in pie[0]:
leg = ax[ind].get_legend()
pie_wedge.set_facecolor(color_dict[labels_0[ind_label]])
leg.legendHandles[ind_label].set_color_(color_dict[labels_0[ind_label]])
ind_label += 1

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