RifleTokyoOL | R Documentation |
This data contains both real and simulated results from 50-meter rifle in Tokyo Olympics 2021. Each observation is the total points after a five-shoot series for one female or male athlete.
RifleTokyoOL
A data frame with 144 observations (rows) and 5 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Points | numeric | Total points in a 5-shot series | (40.7 - 53.1) |
[,2] | Style | character | 3 possible shooting positions | ("Kneeling", "Prone", "Standing") |
[,3] | Gender | character | 2 genders: males and female | ("Male", "Female") |
[,4] | Athlete | character | 16 athletes | ("Zhang Chanhong"..."Andrea Arsovic") |
[,5] | Simulated | character | If the data is simulated or not | ("No", "Yes") |
The shooters (i.e., athletes) compete in three different shooting positions (styles): kneeling ("kne" in Norwegian), prone ("liggende" in Norwegian) and standing position. In the final with 16 athletes, the athletes shoot three five-shot series in each position, with maximum score 54,5 points in each series. Special rules apply to the last standing series (not all shooters shoot five shots in this series), and for some of the athletes data for these series is simulated.
This data was used in Exercises for STAT210 (exercise 19) in August 2022.
The simulated part of the data is created by Lars Erik Gangsei.
# Number of athletes
length(unique(RifleTokyoOL$Athlete))
# Linear model
lm(Points ~ Style, data = RifleTokyoOL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.