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

2

3

4

5

6

7

8

9

10

11

from __future__ import absolute_import 

 

from .r import ttest 

from .basic_stats import (mean, mode, std, variance, median, moving_average) 

from .hmm import all as hmm 

 

# We lazy_import the following modules since they import numpy which 

# slows down sage startup 

from sage.misc.lazy_import import lazy_import 

lazy_import("sage.finance.time_series", ["TimeSeries"]) 

lazy_import("sage.stats.intlist", ["IntList"])