python change plot transparency

Solutions on MaxInterview for python change plot transparency by the best coders in the world

showing results for - "python change plot transparency"
Philipp
25 Oct 2017
1# Basic syntax:
2plt.plot(data, alpha=0.5)
3
4# Note, the alpha parameter goes from 0 (fully transparent) to 1 
5# 	(fully solid). It is especially useful when plotting overlapping
6# 	histograms.