Plot histogram
plot_histogram(
data,
binwidth = 0.01,
show_border = FALSE,
border_color = "black",
alpha = 1,
theme = "viridis",
theme_begin = 0,
theme_end = 0.5,
theme_direction = -1,
legend_position = "right"
)
A numeric vector.
Width of the bins.
Logical value, whether to show border of the bins.
Color of the border.
Alpha value of the bins.
Theme of the bins.
Begin value of the theme.
End value of the theme.
Direction of the theme.
The position of legend.
A ggplot object
data("example_matrix")
network_table <- inferCSN(example_matrix)
#> ℹ [2025-04-22 07:40:20] Running for <dense matrix>.
#> ℹ [2025-04-22 07:40:20] Checking input parameters.
#> ℹ [2025-04-22 07:40:20] Using L0 sparse regression model.
#> ℹ [2025-04-22 07:40:20] Using 1 core
#> ✔ [2025-04-22 07:40:20] Run done.
plot_histogram(network_table[, 3])