matplotlib画图时进行颜色填充
在python中matplotlib进行绘图时,有时为了图形的美观,需要在其上方或者下方进行颜色填充,这时需要采用的函数是fill_between,其中参数y2决定第二条线,如果是向上还是向下填充,下面具体展示: 数据生成 我们这里以正弦函数为例 import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns n = 1024……