Plot coefficients for multiple targets
plot_coefficients(data, targets = NULL, nrow = NULL, ...)
Input data.
Targets to plot.
Number of rows for the plot.
Other arguments passed to plot_coefficient
.
A list of ggplot objects
data("example_matrix")
network_table <- inferCSN(
example_matrix,
targets = c("g1", "g2", "g3")
)
#> ℹ Running for <dense matrix>.
#> ℹ Checking input parameters.
#> ℹ Using 3 target(s).
#> ℹ Using L0 sparse regression model.
#> ℹ Using 1 core
#> ✔ Run done.
plot_coefficients(network_table, show_values = FALSE)
plot_coefficients(network_table, targets = "g1")