regressionParameters

fun ReportBuilder.regressionParameters(rr: RegressionResultsIfc, caption: String? = null, confidenceLevel: Double = 0.95)(source)

Appends a self-contained section containing the regression coefficient table and a significance summary for rr. No plots are included.

Produces (inside a section titled caption or "Parameter Estimates"):

  1. Coefficient DataTable — Predictor | Estimate | Std Error | t₀ | p-value | CI Lower | CI Upper | Sig.; the CI columns use confidenceLevel

  2. Significance code legend paragraph (*** p < 0.001, ** p < 0.01, * p < 0.05, . p < 0.10)

  3. Conclusion paragraph listing which predictors are significant at α = 1 − confidenceLevel

Parameters

rr

the RegressionResultsIfc to report

caption

optional section title

confidenceLevel

confidence level for the parameter CIs; must be in (0, 1)