Constructs a data frame of starting values and parameter bounds for the
logistic Emax model, using the same heuristic approach as emax_nls_init()
applied to the empirical logit scale rather than the raw response.
Examples
emax_logistic_init(
structural_model = rsp_2 ~ exp_1,
covariate_model = list(E0 ~ cnt_a, Emax ~ 1, logEC50 ~ 1),
data = emax_df
)
#> # A tibble: 4 × 5
#> parameter covariate start lower upper
#> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 E0 cnt_a 0 -25.6 25.6
#> 2 E0 Intercept -6.56 -48.8 35.7
#> 3 Emax Intercept 19.6 -22.7 61.8
#> 4 logEC50 Intercept 8.91 7.07 10.8