Source code for mytoolbox.submodule.module2
"""
Module 2 description
"""
import matplotlib.pyplot as plt
[docs]
def my_histo(x):
"""Short summary.
Parameters
----------
x : type
Description of parameter `x`.
Returns
-------
type
Description of returned object.
Examples
--------
Examples should be written in doctest format, and
should illustrate how to use the function/class.
>>>
"""
plt.figure()
plt.hist(x)
plt.show()