oscars | R Documentation |
Best actor and actress Oscar winners from 1929 to 2018
oscars
A data frame with 182 observations on the following 10 variables.
Oscar ceremony number.
Year the Oscar ceremony was held.
Best actress
or Best actor
.
Name of winning actor or actress.
Name of movie actor or actress got the Oscar for.
Age at which the actor or actress won the Oscar.
US State where the actor or actress was born, country if foreign.
Birth date of actor or actress.
Birth month of actor or actress.
Birth day of actor or actress.
Birth year of actor or actress.
Although there have been only 84 Oscar ceremonies until 2012, there are 85 male winners and 85 female winners because ties happened on two occasions (1933 for the best actor and 1969 for the best actress).
Journal of Statistical Education, http://jse.amstat.org/datasets/oscars.dat.txt, updated through 2019 using information from Oscars.org and Wikipedia.org.
library(ggplot2)
library(dplyr)
ggplot(oscars, aes(x = award, y = age)) +
geom_boxplot()
ggplot(oscars, aes(x = factor(birth_mo))) +
geom_bar()
oscars |>
count(birth_pl, sort = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.