📜  python 更改绘图透明度 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:16.087000             🧑  作者: Mango

代码示例1
# Basic syntax:
plt.plot(data, alpha=0.5)

# Note, the alpha parameter goes from 0 (fully transparent) to 1 
#     (fully solid). It is especially useful when plotting overlapping
#     histograms.