Learn R Programming

sport (version 0.2.1)

summary.rating: Summarizing rating objects

Description

Summarizing rating objects Summary for object of class rating

Usage

# S3 method for rating
summary(object, ...)

Value

List with following elements:

  • formula modeled formula.

  • method type of algorithm used.

  • Overall Accuracy named vector containing players ratings.

  • r a data.frame with summarized players ratings and model winning probabilities.

Probabilities are returned only in models with one variable (ratings):

  • name of a player

  • r players ratings

  • rd players ratings deviation

  • Model probability mean predicted probability of winning the challenge by the player.

  • True probability mean observed probability of winning the challenge by the player.

  • Accuracy Accuracy of prediction.

  • pairings number of pairwise occurrences.

Arguments

object

of class rating

...

optional arguments

Examples

Run this code
model <- glicko_run(
  formula = rank | id ~ player(rider),
  data = gpheats[1:102, ]
)
summary(model)

Run the code above in your browser using DataLab