Plot Network Estimation Comparison Results
Source:R/compare_network_estimation.R
plot.network_estimation.RdPlot method for network_estimation objects. Default is histogram with density overlay showing mean and median values.
Usage
# S3 method for class 'network_estimation'
plot(x, metric_name = "Pearson", plot_type = "histogram", ...)Examples
if (FALSE) { # \dontrun{
results <- compare_network_estimation(group_regulation)
plot(results) # Histogram of Pearson correlation
plot(results, metric_name = "Spearman")
plot(results, plot_type = "boxplot")
} # }