notebook.community
Edit and run
This is a test post.
In [2]: import matplotlib.pyplot as plt %matplotlib inline plt.hist([10,5,7,10,1,1,2,3,5])
import matplotlib.pyplot as plt %matplotlib inline plt.hist([10,5,7,10,1,1,2,3,5])
Out[2]: (array([ 2., 1., 1., 0., 2., 0., 1., 0., 0., 2.]), array([ 1. , 1.9, 2.8, 3.7, 4.6, 5.5, 6.4, 7.3, 8.2, 9.1, 10. ]), <a list of 10 Patch objects>)
(array([ 2., 1., 1., 0., 2., 0., 1., 0., 0., 2.]), array([ 1. , 1.9, 2.8, 3.7, 4.6, 5.5, 6.4, 7.3, 8.2, 9.1, 10. ]), <a list of 10 Patch objects>)
In [ ]: