OpenIntroStat / oilabs-tidy

👩🏿‍💻 OpenIntro Labs in R using the tidyverse design philosophy, grammar, and data structures
http://openintrostat.github.io/oilabs-tidy/
Creative Commons Attribution Share Alike 4.0 International
66 stars 85 forks source link

kobe_basket data set is missing #69

Closed kgilds closed 4 years ago

kgilds commented 4 years ago

Hey, I think a data set is missing to run the Probability Lab. In the openintro package, there does not appear to be a data set called kobe_basket. I attempted to work around with the data files in the repo but am not able to find a data-set call kobe_basket or a data set with a variable called shot.

mine-cetinkaya-rundel commented 4 years ago

The dataset is in the development version of the package, which is on its way to CRAN soon! For now you can install it with

library(devtools)
install_github("OpenIntroStat/openintro")

You can find the documentation here.

kgilds commented 4 years ago

Thank you!