Install Package_Package list issue

Hi everyone,

I am a beginner in codding.

I would like to install the following package: https://github.com/mladenjovanovic/bmbstats.

However, it does not appear in my packages list.

How can I solve the problem?

Thanks,

It appears that the package is not yet on CRAN, so to install you should run the following:

devtools::install_github("mladenjovanovic/bmbstats")

If it installs correctly it should then appear on the Packages Pane.

Thank you mfherman,

However, notification of error appears: "Error in loadNamespace(name) : there is no package called ‘devtools’".

That error means that you don't have the devtools package installed. So, first try running

install.packages("devtools")

and then run the code from the last post that will install the bmbstats package.

Also, as you say you are new to R, you might want to take a look at this chapter which talks about R packages and has some useful introductory material!

1 Like

Thank you again.

Certainly, I will check it :slight_smile:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.