StatsWithR / statsr

Companion package for the Coursera Statistics with R specialization
Other
69 stars 83 forks source link

installing inatll_github on Rstudio #19

Open ElMejorDelPlaneta opened 1 week ago

ElMejorDelPlaneta commented 1 week ago

this is the message I get while trying to install install_github in Rstudio noting that my laptop is Windows if that's needed.

install_github("StatsWithR/statsr") Error in install_github("StatsWithR/statsr") : could not find function "install_github"

mine-cetinkaya-rundel commented 6 days ago

To use this function you must first install the devtools package.

install.packages("devtools")
library(devtools)
install_github("StatsWithR/statsr")