当前位置:   article > 正文

Python四种配色方案,适合科研的配色_plt.cm.plasma

plt.cm.plasma

下面这四种配色是不需要指定的,Python自带的主题,无论有多少个种类都适合,这里就简单以条形图为例。

1、Plasma(等高线图颜色)

在这里插入图片描述

import matplotlib.pyplot as plt
data = {
    "apple": 2.03,
    "bob": 1.96,
    "cel": 1.34,
    "daddy": 1.33,
    "egg": 1.23,
    "flow": 1,
    "glow": 0.99,
    "hight": 0.82,
    "illnes": 0.78,
    "joker": 0.48,
    "kill": 0.21,
    "low": 0.15,
    "mammy": 0.13
}


# 将字典按值排序
sorted_data = sorted(data.items(), key=lambda x: x[1])

# 提取标签和值
labels = [item[0] for item in sorted_data]
values = [item[1] for item in sorted_data]

# 设置图形大小和字体大小
plt.rcParams['figure.figsize'] = (14, 10)
plt.rcParams['font.size'] = 16

# 为每个条形图分配不同的颜色
colors = plt.cm.plasma(np.linspace(0, 1, len(labels)))


plt.barh(labels, values, color=colors)
plt.xlabel('title')
# plt.title('各部门/单位数量')

# 保存图片
plt.savefig('1.png', bbox_inches='tight')

# 显示条形图
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

核心代码是下面这句话:

colors = plt.cm.plasma(np.linspace(0, 1, len(labels)))
  • 1

2、Inferno(黑热图颜色)

在这里插入图片描述

import matplotlib.pyplot as plt
data = {
    "apple": 2.03,
    "bob": 1.96,
    "cel": 1.34,
    "daddy": 1.33,
    "egg": 1.23,
    "flow": 1,
    "glow": 0.99,
    "hight": 0.82,
    "illnes": 0.78,
    "joker": 0.48,
    "kill": 0.21,
    "low": 0.15,
    "mammy": 0.13
}


# 将字典按值排序
sorted_data = sorted(data.items(), key=lambda x: x[1])

# 提取标签和值
labels = [item[0] for item in sorted_data]
values = [item[1] for item in sorted_data]

# 设置图形大小和字体大小
plt.rcParams['figure.figsize'] = (14, 10)
plt.rcParams['font.size'] = 16

# 为每个条形图分配不同的颜色
colors = plt.cm.inferno(np.linspace(0, 1, len(labels)))
plt.barh(labels, values, color=colors)
plt.xlabel('title')
# plt.title('各部门/单位数量')

# 保存图片
plt.savefig('1.png', bbox_inches='tight')

# 显示条形图
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

核心代码是下面这句话:

colors = plt.cm.inferno(np.linspace(0, 1, len(labels)))
  • 1

3、Cividis(较好的配色方案)

在这里插入图片描述

import matplotlib.pyplot as plt
data = {
    "apple": 2.03,
    "bob": 1.96,
    "cel": 1.34,
    "daddy": 1.33,
    "egg": 1.23,
    "flow": 1,
    "glow": 0.99,
    "hight": 0.82,
    "illnes": 0.78,
    "joker": 0.48,
    "kill": 0.21,
    "low": 0.15,
    "mammy": 0.13
}


# 将字典按值排序
sorted_data = sorted(data.items(), key=lambda x: x[1])

# 提取标签和值
labels = [item[0] for item in sorted_data]
values = [item[1] for item in sorted_data]

# 设置图形大小和字体大小
plt.rcParams['figure.figsize'] = (14, 10)
plt.rcParams['font.size'] = 16

# 为每个条形图分配不同的颜色
colors = plt.cm.cividis(np.linspace(0, 1, len(labels)))


plt.barh(labels, values, color=colors)
plt.xlabel('title')
# plt.title('各部门/单位数量')

# 保存图片
plt.savefig('1.png', bbox_inches='tight')

# 显示条形图
plt.show()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

核心代码是下面这句话:

colors = plt.cm.cividis(np.linspace(0, 1, len(labels)))
  • 1

4、Viridis(绿色主导的配色方案)

在这里插入图片描述

colors = plt.cm.viridis(np.linspace(0, 1, len(labels)))
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/151013
推荐阅读
相关标签
  

闽ICP备14008679号