.. _sphx_glr_auto_examples_plot_uniform_distribution.py: ================================ Showing the uniform distribution ================================ Example of drawing random uniform number with threefry. .. image:: /auto_examples/images/sphx_glr_plot_uniform_distribution_001.png :align: center .. code-block:: python import threefry import matplotlib.pyplot as plt r = threefry.rng(673144720833845866) data = [r.random_uniform() for i in range(5000)] plt.hist(data, bins=32, normed=True) plt.xlabel(r'$x$') plt.ylabel(r'$P(x)$') plt.show() **Total running time of the script:** ( 0 minutes 0.106 seconds) .. container:: sphx-glr-footer .. container:: sphx-glr-download :download:`Download Python source code: plot_uniform_distribution.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: plot_uniform_distribution.ipynb ` .. rst-class:: sphx-glr-signature `Generated by Sphinx-Gallery `_