sportsdataverse / hoopR

An R package to quickly obtain clean and tidy men's basketball play by play data.
http://hoopr.sportsdataverse.org/
Other
81 stars 19 forks source link

Object 'kenpom' not found #93

Closed sawyerjjohnson closed 2 years ago

sawyerjjohnson commented 2 years ago

I have a KenPom account and I have followed the instructions for how to login via R, It even recognizes that I do have an account. However, when I try to load any of the KenPom packages I get an error along the lines of:

"object 'kenpom' not found"

Is there a reason why I can't load any of the KenPom information?

saiemgilani commented 2 years ago

Please try with development version 1.8.1 and please report back on the status. Appreciate the note!

# You can install using the pacman package using the following code:
if (!requireNamespace('pacman', quietly = TRUE)){
  install.packages('pacman')
}
pacman::p_load_current_gh("sportsdataverse/hoopR", dependencies = TRUE, update = TRUE)

Update, restart your R session and then try.

sawyerjjohnson commented 2 years ago

This seemed to work. Thank you very much for your help!