ecicModel: Specify a statistical model for the ECIC procedure.

Description Usage Arguments Value Examples

View source: R/ecic_model.R

Description

Specify a statistical model for the ECIC procedure.

Usage

1
ecicModel(model.name, ID = model.name, fix = list())

Arguments

model.name:

The name of the model (e.g. "norm")

ID:

A string giving a unique identifier for the model.

fix:

A list of parameters to hold fixed.

Value

An ecicModel object.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
standard.normal = ecicModel("norm",
                            "standard",
                            fix = list("mean" = 0, "sd" = 1))
normal.sd.1 = ecicModel("norm",
                            "standard",
                            fix = list("sd" = 1))

normal = ecicModel("norm")

ecicModelList(standard.normal, normal.sd.1, normal)

mcullan/ecic documentation built on Sept. 3, 2019, 9:57 a.m.