View source: R/matching_plots.R
| autoplot.matching_result | R Documentation |
Produces ggplot2-based visualizations of matching distance distributions. Returns a ggplot object that can be further customized.
## S3 method for class 'matching_result'
autoplot(object, type = c("histogram", "density", "ecdf"), ...)
object |
A matching_result object |
type |
Type of plot: "histogram" (default), "density", or "ecdf" |
... |
Additional arguments (ignored) |
Use plot() for base graphics or autoplot() for ggplot2 output.
The ggplot2 package must be installed.
A ggplot object
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")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.