scores {combinedevents} | R Documentation |
Calculate scores for track and field combined events
Description
scores()
calculates scores for track and field combined events competitions.
Usage
scores(marks, gender, combined_event = NULL, seconds = FALSE)
Arguments
marks |
a numeric or character vector of track and field marks/performances |
gender |
gender of athlete; either " |
combined_event |
an optional character string indicating the
combined events competition. For
|
seconds |
a logical; if |
Value
A list of class "combined_events
" (or "combined_events_null
" if combined_event = NULL
) with
the following fields:
results |
if called with non-NULL |
marks |
the vector of marks for the specified combined event. If not all marks were
supplied to |
scores |
the vector of scores based on the input marks for the specified combined event.
If not all marks were supplied to |
score_total |
if called with non-NULL |
call |
the matched call |
References
International Association of Athletics Federation (2001). IAAF Scoring Tables for Combined Events.
Examples
# Men's decathlon
scores(marks = c(`100m` = 11.61, LJ = 7.32, SP = 13.17, HJ = 1.9,
`400m` = 49.96, `110mH` = 15.32, DT = 38.18, PV = 4.6,
JT = 58.98, `1500m` = "4:39.34"),
gender = "male", combined_event = "decathlon")
# Women's heptathlon
scores(c(14.11, 1.95, 13.96, 25.61, 6.44, 45.98, "2:07.26"),
"female", "heptathlon")
# Men's events
scores(c(`60m` = 7.09, LJ = 7, LJ = 7.03, SP = 11.8, HJ = 2,
`60mH` = 8.30, `60mH` = 9.31, PV = 4.30, `1000m` = "2:40.00"),
gender = "male")