summary.RRi_fit {CardioCurveR} | R Documentation |
Summary method for RRi_fit objects
Description
Provides a detailed summary of the fitted dual-logistic model, including measures of fit such as the residual sum of squares (RSS), total sum of squares (TSS), and R-squared. The summary also includes basic information about the optimization.
Usage
## S3 method for class 'RRi_fit'
summary(object, ...)
Arguments
object |
An object of class "RRi_fit". |
... |
Additional arguments (unused). |
Value
A list with the following components:
method |
The optimization method used. |
parameters |
The estimated parameters from the model. |
objective_value |
The final value of the objective (Huber loss) function. |
convergence |
An integer code indicating convergence (0 indicates success). |
RSS |
Residual sum of squares. |
TSS |
Total sum of squares of the observed RRi values. |
R_squared |
Coefficient of determination. |
n |
The number of observations used. |
[Package CardioCurveR version 1.0.0 Index]