Requires ggraph and ggplot2 to work.

# S3 method for chtrs
plot(x, weight_range = c(0.4, 1), remove_lonely = TRUE, digits = 0, ...)

# S3 method for chtrs
hist(x, ...)

Arguments

x

output of catch_em().

weight_range

range of edge values to plot

remove_lonely

should lonely nodes (not connected to any edges) be removed from the graph?

digits

Number of digits to round the percentage to.

...

passed to ggraph::ggraph() or ggplot2::geom_histogram.

Value

A ggplot2 plot.

Examples

if (interactive()) { files <- choose.files() res <- catch_em(files) plot(res) hist(res) }