Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
scikits.timeseries / timeseries / __init__.py
Size: Mime:
"""TimeSeries

:author: Pierre GF Gerard-Marchant & Matt Knox
:contact: pierregm_at_uga_dot_edu - mattknox_ca_at_hotmail_dot_com
:version: $Id: __init__.py 2213 2009-08-23 16:43:40Z mattknox_ca $
"""


__author__ = "Pierre GF Gerard-Marchant  & Matt Knox ($Author: mattknox_ca $)"
__revision__ = "$Revision: 2213 $"
__date__     = '$Date: 2009-08-23 12:43:40 -0400 (Sun, 23 Aug 2009) $'

import const
import tdates
from tdates import *
import tseries
from tseries import *
import trecords
from trecords import *
_c = const
from extras import tsfromtxt, guess_freq

from scikits.timeseries.version import __version__

__all__ = [
    '_c', 'const', 'tdates','tseries','trecords', 'tsfromtxt', 'guess_freq']
__all__.extend(tdates.__all__)
__all__.extend(tseries.__all__)
__all__.extend(trecords.__all__)

from numpy.testing import Tester
test = Tester().test