Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1 KB

README.md

File metadata and controls

33 lines (20 loc) · 1 KB

DOI

Binder

################################################################################

README

################################################################################

################################################################################

INSTALL

################################################################################

python setup.py install

You may need to run this as root, depending on your permissions.

sudo python setup.py install

################################################################################

Hello world!

################################################################################

import numpy as np
import matplotlib.pylab as plt

import lichen as lch

x = np.random.normal(5,1,1000)
h = lch.hist(x,bins=50)
plt.show()