import limix_plot as lp
from numpy.random import RandomState
# >>>
random = RandomState(1)
nsnps = 10000
# >>>
pv0 = list(random.rand(nsnps))
pv1 = list(0.7 * random.rand(nsnps))
# >>>
lp.power(pv0, label='label0')
lp.power(pv1, label='label1')
_ = lp.get_pyplot().legend(loc='best')
