diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-19 10:47:09 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-19 10:47:09 +0100 |
commit | 3947731a5a8c3598271b26f5201dea4bcb13ef6d (patch) | |
tree | c8139c938f970b647421704b7a2b0780557a38d1 /man | |
parent | dd30f0d0ff1d8d0cc46aaef6e0917c51fe798f52 (diff) |
Fix one_box for ini = 1, use in sawtooth examples
Diffstat (limited to 'man')
-rw-r--r-- | man/one_box.Rd | 2 | ||||
-rw-r--r-- | man/plot.one_box.Rd | 2 | ||||
-rw-r--r-- | man/sawtooth.Rd | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/man/one_box.Rd b/man/one_box.Rd index 8132a70..1bdc791 100644 --- a/man/one_box.Rd +++ b/man/one_box.Rd @@ -49,6 +49,6 @@ plot(pred_1) # Use a model with more than one observed variable m_2 <- mkinmod(parent = mkinsub("SFO", "m1"), m1 = mkinsub("SFO")) fit_2 <- mkinfit(m_2, FOCUS_2006_D, quiet = TRUE) -pred_2 <- one_box(fit_2) +pred_2 <- one_box(fit_2, ini = "model") plot(pred_2) } diff --git a/man/plot.one_box.Rd b/man/plot.one_box.Rd index 69ee908..8c8a301 100644 --- a/man/plot.one_box.Rd +++ b/man/plot.one_box.Rd @@ -38,7 +38,7 @@ plot(sawtooth(dfop_pred, 3, 7), max_twa = 21) # Use a fitted mkinfit model m_2 <- mkinmod(parent = mkinsub("SFO", "m1"), m1 = mkinsub("SFO")) fit_2 <- mkinfit(m_2, FOCUS_2006_D, quiet = TRUE) -pred_2 <- one_box(fit_2) +pred_2 <- one_box(fit_2, ini = 1) pred_2_saw <- sawtooth(pred_2, 2, 7) plot(pred_2_saw, max_twa = 21, max_twa_var = "m1") } diff --git a/man/sawtooth.Rd b/man/sawtooth.Rd index 8eb8bea..3b1bd3e 100644 --- a/man/sawtooth.Rd +++ b/man/sawtooth.Rd @@ -30,7 +30,7 @@ plot(sawtooth(pred, applications = applications)) m_2 <- mkinmod(parent = mkinsub("SFO", "m1"), m1 = mkinsub("SFO")) fit_2 <- mkinfit(m_2, FOCUS_2006_D, quiet = TRUE) -pred_2 <- one_box(fit_2) +pred_2 <- one_box(fit_2, ini = 1) pred_2_saw <- sawtooth(pred_2, 2, 7) plot(pred_2_saw, max_twa = 21, max_twa_var = "m1") |