set_parameter_matrix {CausalQueries} | R Documentation |
Set parameter matrix
Description
Add a parameter matrix to a model
Usage
set_parameter_matrix(model, P = NULL)
Arguments
model |
A |
P |
A |
Value
An object of class causal_model
. It essentially returns a
list containing the elements comprising a model
(e.g. 'statement', 'nodal_types' and 'DAG') with the parameter matrix
attached to it.
Examples
model <- make_model('X -> Y')
P <- diag(8)
colnames(P) <- rownames(model$causal_types)
model <- set_parameter_matrix(model, P = P)
[Package CausalQueries version 1.1.1 Index]