Learn R Programming

convergenceDFM (version 0.1.4)

visualize_factor_dynamics_simple: Simple factor dynamics visualization

Description

Creates a simplified multi-panel plot of factor scores over time with minimal dependencies. Useful for quick diagnostics.

Usage

visualize_factor_dynamics_simple(
  factors_data,
  output_file = NULL,
  verbose = TRUE
)

Value

Invisibly returns NULL.

Arguments

factors_data

List containing factor scores.

output_file

Character string. Optional file path for saving. Default is NULL.

verbose

Logical; print progress and diagnostic information. Default TRUE.

Examples

Run this code
# \donttest{
data <- list(scores_X = matrix(rnorm(100), ncol = 2),
             scores_Y = matrix(rnorm(100), ncol = 2))
tmp_file <- file.path(tempdir(), "test_plot.pdf")
visualize_factor_dynamics_simple(data, output_file = tmp_file)
# }

Run the code above in your browser using DataLab