plot.chtrs: Plot cheatrs / histogram of similarity scores

View source: R/methods.R

plot.chtrsR Documentation

Plot cheatrs / histogram of similarity scores

Description

Requires ggraph and ggplot2 to work.

Usage

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

## S3 method for class '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.

Author(s)

Mattan S. Ben-Shachar

Examples

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

  plot(res)
  hist(res)
}


cheatR documentation built on April 13, 2022, 9:07 a.m.