Converts the estimated theta coefficients (\(\theta_j\)'s) into an adjacency
matrix representing the regulatory network between variables.
Currently, only the non-interaction model (interaction = FALSE
) is supported.
Arguments
- interaction_term
A logical value specifying whether to include interaction effects in the model.
- res_theta
A numeric matrix whose columns contain the estimated \(\theta_j\) values for each variable.
If
interaction_term = FALSE
,res_theta
must have dimensions (p
,p
).If
interaction_term = TRUE
,res_theta
must have dimensions (p^2
,p
).