Print simple output of mELO_rating object to screen

# S3 method for mELO_rating
print(modelled_ratings, digits = 1)

Arguments

modelled_ratings

A mELO_rating object.

digits

Number of significant digits in the ratings column to be output.

Value

text to screen

Examples

# rock paper scissors model rps_model <- mELO(rps_df, k=1) # print.mELO_rating is automatically called: rps_model
#> #> mELO Ratings For 3 Players Playing 120 Games #> #> k = 1. #> #> Player Rating Games Win Draw Loss Lag #> 1 PAPER 2204.1 80 40 0 40 0 #> 2 SCISSORS 2199.9 80 40 0 40 0 #> 3 ROCK 2196.0 80 40 0 40 1 #>