plt.fill_between(X_test.flatten(),upper_bound.flatten(),lower_bound.flatten(),alpha=0.25, facecolor='blue')
时间: 2024-05-26 18:13:15 浏览: 105
matlab开发-fillbetween
这行代码使用了 Matplotlib 库中的 fill_between 函数,它可以用来填充两个函数之间的区域。具体来说,X_test 是一个一维数组,表示自变量的取值;upper_bound 和 lower_bound 也是一维数组,分别表示两个函数在 X_test 上的取值范围。这行代码的作用就是将两个函数之间的区域用蓝色填充,并设置透明度为 0.25。最终的效果是,可以更直观地看出两个函数之间的差异和不确定性。
阅读全文