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""" 

2Datasets module 

3""" 

4from statsmodels.tools._testing import PytestTester 

5 

6from . import (anes96, cancer, committee, ccard, copper, cpunish, elnino, 

7 engel, grunfeld, interest_inflation, longley, macrodata, 

8 modechoice, nile, randhie, scotland, spector, stackloss, 

9 star98, strikes, sunspots, fair, heart, statecrime, co2, 

10 fertility, china_smoking) 

11from .utils import (get_rdataset, get_data_home, clear_data_home, webuse, 

12 check_internet) 

13 

14__all__ = ['anes96', 'cancer', 'committee', 'ccard', 'copper', 'cpunish', 

15 'elnino', 'engel', 'grunfeld', 'interest_inflation', 'longley', 

16 'macrodata', 'modechoice', 'nile', 'randhie', 'scotland', 'spector', 

17 'stackloss', 'star98', 'strikes', 'sunspots', 'fair', 'heart', 

18 'statecrime', 'co2', 'fertility', 'china_smoking', 

19 'get_rdataset', 'get_data_home', 'clear_data_home', 'webuse', 

20 'check_internet', 'test'] 

21 

22test = PytestTester()