ó
áp7]c           @   sb   d  Z  d d l m Z d Z d Z d Z d Z d Z d Z	 d	 Z
 d d
 „ Z d „  Z d „  Z d S(   s   Name of dataset.iÿÿÿÿ(   t   utilst   restructuredtexts   E.g., This is public domain.s   Title of the datasets¨   
This section should provide a link to the original dataset if possible and
attribution and correspondance information for the dataset's original author
if so desired.
s   A short description.s$   A longer description of the dataset.s¤   
::

    Number of observations:
    Number of variables:
    Variable name definitions:

Any other useful information that does not fit into the above categories.
c         C   s   t  j t ƒ  d |  ƒS(   s_  
    Load the data and return a Dataset class instance.

    Parameters
    ----------
    as_pandas : bool
        Flag indicating whether to return pandas DataFrames and Series
        or numpy recarrays and arrays.  If True, returns pandas.

    Returns
    -------
    Dataset instance:
        See DATASET_PROPOSAL.txt for more information.

    t	   as_pandas(   t   dut   as_numpy_datasett   load_pandas(   R   (    (    sA   lib/python2.7/site-packages/statsmodels/datasets/template_data.pyt   load   s    c          C   s   t  ƒ  }  t j |  d d ƒS(   sª   
    Load the strikes data and return a Dataset class instance.

    Returns
    -------
    Dataset instance:
        See DATASET_PROPOSAL.txt for more information.
    t	   endog_idxi    (   t	   _get_dataR   t   process_pandas(   t   data(    (    sA   lib/python2.7/site-packages/statsmodels/datasets/template_data.pyR   1   s    		c           C   s   t  j t d ƒ S(   Ns   DatasetName.csv(   R   t   load_csvt   __file__(    (    (    sA   lib/python2.7/site-packages/statsmodels/datasets/template_data.pyR   >   s    N(   t   __doc__t   statsmodels.datasetsR    R   t   __docformat__t	   COPYRIGHTt   TITLEt   SOURCEt
   DESCRSHORTt	   DESCRLONGt   NOTEt   NoneR   R   R   (    (    (    sA   lib/python2.7/site-packages/statsmodels/datasets/template_data.pyt   <module>   s   	