plot.visstat {visStatistics}R Documentation

Report only saved plot files for visstat objects

Description

This method reports the file paths of plots that were saved to disk during the statistical analysis, if the user requested file output (e.g., PNG or PDF) via the graphicsoutput argument.

Usage

## S3 method for class 'visstat'
plot(x, ...)

Arguments

x

An object of class "visstat", returned by visstat().

...

Currently unused. Included for S3 method compatibility.

Details

Note that plots are shown during execution of visstat(), even if no files are saved. This method does not re-render or replay those plots.

All file-based plots in visStatistics are generated using the Cairo() device and their file paths are collected in the object's "plot_paths" attribute.

In interactive sessions, this method prints the list of saved files. In non-interactive contexts, it suppresses output.

The visstat() function may produce several plots per test type (e.g., main effect, post hoc comparisons, assumption checks). These are saved to disk, and their file paths are collected in the object's "plot_paths" attribute.

In an interactive session, plot() will print these paths to the console. In non-interactive sessions, it quietly lists them. No plots are shown or rendered within R.

Value

Invisibly returns x. Used for its side effect of reporting file paths.

See Also

visstat, Cairo, print.visstat, summary.visstat


[Package visStatistics version 0.1.7 Index]