Learn R Programming

couplr (version 1.1.0)

autoplot.matching_result: ggplot2 autoplot for matching results

Description

Produces ggplot2-based visualizations of matching distance distributions. Returns a ggplot object that can be further customized.

Usage

# S3 method for matching_result
autoplot(object, type = c("histogram", "density", "ecdf"), ...)

Value

A ggplot object

Arguments

object

A matching_result object

type

Type of plot: "histogram" (default), "density", or "ecdf"

...

Additional arguments (ignored)

Details

Use plot() for base graphics or autoplot() for ggplot2 output. The ggplot2 package must be installed.

Examples

Run this code
# \donttest{
if (requireNamespace("ggplot2", quietly = TRUE)) {
  left <- data.frame(id = 1:5, x = c(1, 2, 3, 4, 5))
  right <- data.frame(id = 6:10, x = c(1.1, 2.2, 3.1, 4.2, 5.1))
  result <- match_couples(left, right, vars = "x")
  ggplot2::autoplot(result)
  ggplot2::autoplot(result, type = "density")
}
# }

Run the code above in your browser using DataLab