Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2API for empirical likelihood 

3 

4""" 

5__all__ = [ 

6 "DescStat", "DescStatUV", "DescStatMV", 

7 "ELOriginRegress", "ANOVA", "emplikeAFT" 

8] 

9 

10# pylint: disable=W0611 

11 

12from .descriptive import DescStat, DescStatUV, DescStatMV 

13from .originregress import ELOriginRegress 

14from .elanova import ANOVA 

15from .aft_el import emplikeAFT