gcjcStruct {grt} | R Documentation |
General Conjunctive Classifier structure
Description
A list of model parameters that specify a conjunctive decision bound, containing noise
, coeffs
, and bias
.
Usage
gcjcStruct(noise, bias, config=c(1,2,3,4))
Arguments
noise |
a positive non-zero numeric. |
bias |
numeric vector corresponding to the intercepts of the bounds |
config |
A numeric value specifying the location of the conjunctive category in relation to the category bounds. The value 1 indicates the category is on the top right (set as default), 2 indicates the top left, 3 indicates bottom left, and 4 indicates the bottom right. |
Value
object of class gcjcStruct
, which is a list of a named list containing noise
, coeffs
, and bias
.
See Also
gcjc
,
coef.glcStruct
,
logLik.glcStruct
Examples
params <- gcjcStruct(noise=10, bias=c(100, 200), config=1)
[Package grt version 0.2.1 Index]