mirror of
https://github.com/msberends/AMR.git
synced 2026-06-24 15:36:19 +02:00
Built site for AMR@3.0.1.9061: 0c1709c
This commit is contained in:
@@ -14,24 +14,53 @@ website](https://amr-for-r.org/articles/AMR_with_tidymodels.html).
|
||||
## Usage
|
||||
|
||||
``` r
|
||||
resistance_predict(x, col_ab, col_date = NULL, year_min = NULL,
|
||||
year_max = NULL, year_every = 1, minimum = 30, model = NULL,
|
||||
I_as_S = TRUE, preserve_measurements = TRUE, info = interactive(), ...)
|
||||
resistance_predict(
|
||||
x,
|
||||
col_ab,
|
||||
col_date = NULL,
|
||||
year_min = NULL,
|
||||
year_max = NULL,
|
||||
year_every = 1,
|
||||
minimum = 30,
|
||||
model = NULL,
|
||||
I_as_S = TRUE,
|
||||
preserve_measurements = TRUE,
|
||||
info = interactive(),
|
||||
...
|
||||
)
|
||||
|
||||
sir_predict(x, col_ab, col_date = NULL, year_min = NULL, year_max = NULL,
|
||||
year_every = 1, minimum = 30, model = NULL, I_as_S = TRUE,
|
||||
preserve_measurements = TRUE, info = interactive(), ...)
|
||||
sir_predict(
|
||||
x,
|
||||
col_ab,
|
||||
col_date = NULL,
|
||||
year_min = NULL,
|
||||
year_max = NULL,
|
||||
year_every = 1,
|
||||
minimum = 30,
|
||||
model = NULL,
|
||||
I_as_S = TRUE,
|
||||
preserve_measurements = TRUE,
|
||||
info = interactive(),
|
||||
...
|
||||
)
|
||||
|
||||
# S3 method for class 'resistance_predict'
|
||||
plot(x, main = paste("Resistance Prediction of",
|
||||
x_name), ...)
|
||||
plot(x, main = paste("Resistance Prediction of", x_name), ...)
|
||||
|
||||
ggplot_sir_predict(x, main = paste("Resistance Prediction of", x_name),
|
||||
ribbon = TRUE, ...)
|
||||
ggplot_sir_predict(
|
||||
x,
|
||||
main = paste("Resistance Prediction of", x_name),
|
||||
ribbon = TRUE,
|
||||
...
|
||||
)
|
||||
|
||||
# S3 method for class 'resistance_predict'
|
||||
autoplot(object,
|
||||
main = paste("Resistance Prediction of", x_name), ribbon = TRUE, ...)
|
||||
autoplot(
|
||||
object,
|
||||
main = paste("Resistance Prediction of", x_name),
|
||||
ribbon = TRUE,
|
||||
...
|
||||
)
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
Reference in New Issue
Block a user