Exemple #1
0
def test_decomposition():
    ml = test_add_stressmodel()
    ml.plots.decomposition(min_ylim_diff=0.1)
Exemple #2
0
def test_compare():
    ml = test_add_stressmodel()
    ml2 = ml.copy()
    ml2.name = "Test_Model2"
    models = [ml, ml2]
    compare(models)
Exemple #3
0
def test_tracksolve():
    ml = test_add_stressmodel()
    track = TrackSolve(ml)
    track.initialize_figure()
    ml.solve(callback=track.update_figure)
Exemple #4
0
def test_plot():
    ml = test_add_stressmodel()
    ml.plot()
Exemple #5
0
def test_contributions_pie():
    ml = test_add_stressmodel()
    ml.plots.contributions_pie()
Exemple #6
0
def test_diagnostics():
    ml = test_add_stressmodel()
    ml.plots.diagnostics()
Exemple #7
0
def test_stresses():
    ml = test_add_stressmodel()
    ml.plots.stresses()
Exemple #8
0
def test_step_response():
    ml = test_add_stressmodel()
    ml.plots.step_response()
Exemple #9
0
def test_block_response():
    ml = test_add_stressmodel()
    ml.plots.block_response()
Exemple #10
0
def test_stacked_results():
    ml = test_add_stressmodel()
    ml.plots.stacked_results()
Exemple #11
0
def test_results():
    ml = test_add_stressmodel()
    ml.plots.results()
Exemple #12
0
def test_diagnostics():
    ml = test_add_stressmodel()
    ml.plots.diagnostics(acf_options=dict(min_obs=10))