Nobel laureates are often thought of as bona fide greater-than-life scientific celebrities. Last year Kaggle, a platform for predictive modelling and analytics competitions, has compiled Nobel Laureates Dataset which details 18 variables on 969 laureates. While many have probed the dataset statistically, only few shaped it into interactive tools.
laureates <- readRDS("D:/RStudio/09-DevelopingDataProducts/Coursera/laureates.RDS")
dim(laureates)
## [1] 969 18
colnames(laureates)
## [1] "Year" "Category" "Prize" ## [4] "Motivation" "Prize.Share" "Laureate.ID" ## [7] "Laureate.Type" "Full.Name" "Birth.Date" ## [10] "Birth.City" "Birth.Country" "Sex" ## [13] "Organization.Name" "Organization.City" "Organization.Country" ## [16] "Death.Date" "Death.City" "Death.Country"