Print, summarize, and plot methods for pairwise
repeated-measures correlation objects of class "rmcorr" and
"summary_rmcorr".
# S3 method for rmcorr
print(
x,
digits = 4,
n = NULL,
topn = NULL,
max_vars = NULL,
width = NULL,
show_ci = NULL,
...
)# S3 method for rmcorr
summary(
object,
n = NULL,
topn = NULL,
max_vars = NULL,
width = NULL,
show_ci = NULL,
...
)
# S3 method for summary_rmcorr
print(
x,
digits = 4,
n = NULL,
topn = NULL,
max_vars = NULL,
width = NULL,
show_ci = NULL,
...
)
# S3 method for rmcorr
plot(
x,
title = NULL,
point_alpha = 0.8,
line_width = 0.8,
show_legend = FALSE,
show_value = TRUE,
...
)
An object of class "rmcorr" or "summary_rmcorr".
Number of significant digits to print.
Optional row threshold for compact preview output.
Optional number of leading/trailing rows to show when truncated.
Optional maximum number of visible columns; NULL derives this
from console width.
Optional display width; defaults to getOption("width").
One of "yes" or "no".
Additional arguments passed to downstream methods. For
plot.rmcorr(), these are passed to ggplot2::theme().
An object of class "rmcorr".
Optional plot title for plot.rmcorr(). Defaults to a
title containing the estimated repeated-measures correlation.
Alpha transparency for scatterplot points.
Line width for subject-specific fitted lines.
Logical; if TRUE, shows the subject legend in the
pairwise scatterplot.
Logical; included for a consistent plotting interface. Pairwise repeated-measures plots do not overlay numeric cell values, so this argument currently has no effect.