S3 method for providing summary for the shorts_model
object
Source: R/shorts-S3.R
summary.shorts_model.Rd
S3 method for providing summary for the shorts_model
object
Usage
# S3 method for class 'shorts_model'
summary(object, ...)
Examples
split_distances <- c(10, 20, 30, 40, 50)
split_times <- create_timing_gates_splits(
gates = split_distances,
MSS = 10,
MAC = 9,
FD = 0.25,
TC = 0
)
# Simple model
simple_model <- model_timing_gates(split_distances, split_times)
summary(simple_model)
#>
#> Formula: time ~ predict_time_at_distance(distance, MSS, MAC)
#>
#> Parameters:
#> Estimate Std. Error t value Pr(>|t|)
#> MSS 9.78099 0.07441 131.44 9.71e-07 ***
#> MAC 12.41280 0.35730 34.74 5.24e-05 ***
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
#>
#> Residual standard error: 0.01881 on 3 degrees of freedom
#>
#> Number of iterations to convergence: 5
#> Achieved convergence tolerance: 1.49e-08
#>