View source: R/model-sigmoid-prior.R
sigmoid_agonist_prior | R Documentation |
Creates a data.frame
of priors for the sigmoid agonist model
If the function arguments ec50
, hill
, top
, bottom
are NULL
, default
normal distribution priors will be set.
If you would like to set a parameter as a constant, enter a numeric value for the function argument.
For other distribution options, reference brms::prior and Prior Choice Recommendations
sigmoid_agonist_prior(
ec50 = brms::prior(prior = normal(-6, 2.5), nlpar = "ec50"),
hill = brms::prior(prior = normal(1, 1), nlpar = "hill", lb = -0.01),
top = brms::prior(prior = normal(1, 0.5), nlpar = "top"),
bottom = brms::prior(prior = normal(0, 0.5), nlpar = "bottom"),
...
)
ec50 |
brms::brmsprior or |
hill |
brms::brmsprior or |
top |
brms::brmsprior or |
bottom |
brms::brmsprior or |
... |
additional brms::brmsprior objects. |
brms::brmsprior
sigmoid_agonist_formula, sigmoid_agonist_init, and sigmoid_model
## Not run:
# Consider an activator that has a max response around 50%, EC50 is estimated
# to be around 1 nM, and minimum response is known to be 0.
priors <- sigmoid_agonist_prior(
ec50 = brms::prior(prior = normal(-9, 0.5), nlpar = "ec50"),
top = brms::prior(prior = normal(0.5, 0.2), nlpar = "top"),
bottom = 0)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.