set_model_info | R Documentation |
Create model information data frame (one row).
set_model_info( model = NULL, mean_fun = NULL, err_dist = NULL, binomial_n = NA, delta = NA, thetaC = NULL, data = NULL )
model |
A row from a set_models() data frame. |
mean_fun |
Mean function. |
err_dist |
Error distribution. |
binomial_n |
Binomial size parameter, n. |
delta |
Tail-adjusted beta delta parameter. |
thetaC |
Alternate specification of constant parameters, either the binomial parameter, thetaC=c(n=40); or the tail-adjusted beta delta parameter, thetaC=c(delta=0.01). |
data |
Data (x,y) set used to estimate tail-adjusted beta delta parameter. |
Data frame (one row) containing model information.
Model <- set_models (mean_fun=c("gaussian"), err_dist=c("zitab"), method="crossed") set_model_info (model=Model) set_model_info (mean_fun="gaussian", err_dist="negbin") set_model_info (mean_fun="gaussian", err_dist="binomial.count", binomial_n=50) set_model_info (mean_fun="gaussian", err_dist="tab", delta=0.01)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.