modelFormula {gRapHD} | R Documentation |
Returns the formula of the model.
modelFormula(model)
model |
gRapHD class. |
See Lauritzen (1996), pages 202-203, and 215-216 for more details.
List with the generators of the model:
discrete |
terms (d,emptyset) |
linear |
terms (d,gamma^2) |
quadratic |
terms (d,gamma) and (d,{gamma,μ}) |
quadratic2 |
terms (d,c^2) |
Gabriel Coelho Goncalves de Abreu (Gabriel.Abreu@agrsci.dk)
Rodrigo Labouriau (Rodrigo.Labouriau@agrsci.dk)
David Edwards (David.Edwards@agrsci.dk)
Lauritzen, S.L. (1996) Graphical Models, Oxford University Press.
data(dsMixed) m <- minForest(dsMixed,homog=TRUE,stat="LR") str(modelFormula(m)) #List of 4 # $ discrete :List of 4 # ..$ : int [1:2] 1 3 # ..$ : int [1:2] 3 4 # ..$ : int [1:2] 3 5 # ..$ : int [1:2] 5 2 # $ linear : list() # $ quadratic :List of 5 # ..$ : num [1:2] 5 8 # ..$ : num [1:2] 5 9 # ..$ : num [1:2] 4 11 # ..$ : num [1:2] 5 14 # ..$ : num [1:2] 2 15 # $ quadratic2:List of 6 # ..$ : num [1:2] 6 11 # ..$ : num [1:2] 7 8 # ..$ : num [1:2] 9 10 # ..$ : num [1:2] 9 13 # ..$ : num [1:2] 12 15 # ..$ : num 14 m <- minForest(dsMixed,homog=FALSE,stat="LR") str(modelFormula(m)) #List of 4 # $ discrete :List of 4 # ..$ : int [1:2] 1 3 # ..$ : int [1:2] 3 4 # ..$ : int [1:2] 3 5 # ..$ : int [1:2] 5 2 # $ linear :List of 10 # ..$ : num [1:2] 2 6 # ..$ : num [1:2] 5 7 # ..$ : num [1:2] 5 8 # ..$ : num [1:2] 5 9 # ..$ : num [1:2] 5 10 # ..$ : num [1:2] 2 11 # ..$ : num [1:2] 3 12 # ..$ : num [1:2] 2 13 # ..$ : num [1:2] 5 14 # ..$ : num [1:2] 2 15 # $ quadratic : list() # $ quadratic2: list()