statsr icon indicating copy to clipboard operation
statsr copied to clipboard

installing inatll_github on Rstudio

Open ElMejorDelPlaneta opened this issue 1 year ago • 1 comments

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"

ElMejorDelPlaneta avatar Jun 30 '24 10:06 ElMejorDelPlaneta

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

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

mine-cetinkaya-rundel avatar Jul 04 '24 14:07 mine-cetinkaya-rundel