powered by
This dataset contains the number of degrees awarded per year. It's based on data from the National Center for Education Statistics as retrieved by Steve Pierson. See https://community.amstat.org/blogs/steve-pierson/2014/07/28/categorization-of-statistics-degrees for more information.
degreesawarded
A data.frame with 4606 observations and 5 columns. The columns are defined as follows:
data.frame
school
The college
program_category
The program type categorized as either "Statistics" or "Biostatistics"
degree_category
The degree categorized as either "Master" or "Doctorate"
year
The year the degrees were awarded
count
The number of degrees awarded
if (FALSE) { data(degreesawarded) summary(degreesawarded) # In wide format as provided by Steve Pierson library(tidyr) spread(degreesawarded, key = year, value = count) }
Run the code above in your browser using DataLab