Need to know what these Numbers in np.random.seed(19680801) mean, when you use it for Color.
Here is an example: https://matplotlib.org/gallery/lines_bars_and_markers/scatter_masked.html#sphx-glr-gallery-lines-bars-and-markers-scatter-masked-py
Need to know what these Numbers in np.random.seed(19680801) mean, when you use it for Color.
Here is an example: https://matplotlib.org/gallery/lines_bars_and_markers/scatter_masked.html#sphx-glr-gallery-lines-bars-and-markers-scatter-masked-py
A seed in a random generator ensures that the pseudo-random data that is generated will be the same for the next experiment. This is used to be able to replicate experiments with "random" data.
The seed is usually given as a number, in this case the authors chose the number 19680801 as a number.