|
7 | 7 | import numba
|
8 | 8 | except:
|
9 | 9 | raise ImportError(
|
10 |
| - "Cannot import numba from current anaconda distribution. Please run `conda install numba` to install the latest version.") |
| 10 | + "Cannot import numba from current anaconda distribution. \ |
| 11 | + Please run `conda install numba` to install the latest version.") |
11 | 12 |
|
12 | 13 | #-Modules-#
|
13 | 14 | from . import distributions
|
|
25 | 26 | # from .game_theory import <objects-here> #Place Holder if we wish to promote any general objects to the qe namespace.
|
26 | 27 | from .graph_tools import DiGraph, random_tournament_graph
|
27 | 28 | from .gridtools import cartesian, mlinspace, simplex_grid, simplex_index
|
28 |
| -from .inequality import lorenz_curve, gini_coefficient, shorrocks_index, rank_size_plot |
| 29 | +from .inequality import lorenz_curve, gini_coefficient, shorrocks_index, \ |
| 30 | + rank_size_plot |
29 | 31 | from .kalman import Kalman
|
30 | 32 | from .lae import LAE
|
31 | 33 | from .arma import ARMA
|
|
37 | 39 | from .quadsums import var_quadratic_sum, m_quadratic_sum
|
38 | 40 | #->Propose Delete From Top Level
|
39 | 41 | #Promote to keep current examples working
|
40 |
| -from .markov import MarkovChain, random_markov_chain, random_stochastic_matrix, gth_solve, tauchen, rouwenhorst |
| 42 | +from .markov import MarkovChain, random_markov_chain, random_stochastic_matrix, \ |
| 43 | + gth_solve, tauchen, rouwenhorst |
41 | 44 | #Imports that Should be Deprecated with markov package
|
42 | 45 | from .markov import mc_compute_stationary, mc_sample_path
|
43 | 46 | #<-
|
|
0 commit comments