S3 method for printing shorts_model object

# S3 method for shorts_model
print(x, ...)

Arguments

x

shorts_model object

...

Not used

Examples

split_times <- data.frame( distance = c(5, 10, 20, 30, 35), time = c(1.20, 1.96, 3.36, 4.71, 5.35) ) # Simple model simple_model <- with( split_times, model_using_splits(distance, time) ) print(simple_model)
#> Estimated model parameters #> -------------------------- #> MSS TAU MAC PMAX #> 7.3937467 0.6377437 11.5936019 21.4300389 #> time_correction distance_correction #> 0.0000000 0.0000000 #> #> Model fit estimators #> -------------------- #> RSE R_squared minErr maxErr maxAbsErr RMSE #> 0.02240014 0.99988183 -0.02066091 0.02133341 0.02133341 0.01735107 #> MAE MAPE #> 0.01554950 0.60513742