Closure for simulating logistic curve
This closure is useful for simulating q inside the sim_survey
function
sim_logistic(k = 2, x0 = 3, plot = FALSE)
k
: The steepness of the curvex0
: The x-value of the sigmoid's midpointplot
: Plot relationshipReturns a function for use in sim_survey
.
logistic_fun <- sim_logistic(k = 2, x0 = 3, plot = TRUE) logistic_fun(x = 1:10)