本文主要介绍了matplotlib 多个图像共用一个colorbar的实现示例,分享给大家,具体如下:
# -*- coding: utf-8 -*-
"""
Created on Sat Sep 5 18:05:11 2020
author: 15025
draw three figures with one common colorbar
"""
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.axe
python matplotlib画图使用colorbar工具自定义颜色 colorbar(draw colorbar without any mapple/plot)
自定义colorbar可以画出任何自己想要的colorbar,自由自在、不受约束,不依赖于任何已有的图(plot/mappable)。这里使用的是mpl.colorbar.ColorbarBase类,而colorbar类必须依赖于已有的图。
参数可以参考下面的描述->matplotlib:
class matplotli