Learn R Programming

MixStable (version 0.1.0)

analyse_stable_distribution: Perform full stability analysis and export results

Description

Executes the full pipeline for stability analysis: normality tests, QCV computation, parameter estimation, plotting, and report export.

Usage

analyse_stable_distribution(
  x,
  filename = "interval_analysis",
  qcv_threshold = 1.8,
  fig_path = NULL,
  verbose = FALSE
)

Value

Invisibly returns a character string containing a Markdown-formatted summary report.

Arguments

x

Numeric vector of data.

filename

Base name for output files (JSON and Excel). Written to tempdir().

qcv_threshold

Threshold for QCV to consider distribution heavy-tailed.

fig_path

Optional path to save the plot (PNG). If NULL, uses tempdir().

verbose

Logical; if TRUE, prints progress messages. Default is FALSE.