README.md

rbaes

R Bayesian Analysis and Estimation Stuff

A set of functions and routines for Bayesian data analysis.

Dependencies

A current R installation.

So that you can install the GitHub contents as an R package. You can install the package by opening up RStudio or an R terminal and running:

install.packages("devtools")

For Windows users, you may be required to install Rtools first before you can use the devtools package. These are a set of build tools customized for building R packages (see devtools link for more details).

How to install

Once devtools is installed, you’ll use the install_github() function from the package to download and install the package from this GitHub repository. Run the code below to download and install:

devtools::install_github("iamamutt/rbaes", dependencies=TRUE)

If successful, the package should now be installed. Load the package as you normally would any other package (see below). Repeat steps 2–3 if there are updates to the package or to reinstall on another computer. You should now be able to use the package materials and should see it in your packages tab if using RStudio.

library(rbaes)

Viewing help documentation

Viewing the package welcome page:

package?rbaes

Viewing package information and a list of exported objects:

help(package="rbaes")
# or
library(help="rbaes")


iamamutt/rbaes documentation built on May 18, 2019, 1:27 a.m.