Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 823 Bytes

File metadata and controls

33 lines (24 loc) · 823 Bytes

RLR

The goal of RLR is to help you conduct proper RL research.

Installation

You can install the development version of RLR from GitHub with:

install.packages("devtools")
remotes::install_github('jorvlan/raincloudplots')
devtools::install_github("shahar-lab/RLR",dependencies = TRUE)

Example

This is a basic example which shows you how to solve a common problem:

library(RLR)
## basic example code
R=
randomwalk(Narms=4,
          Ntrials=50,
           tau            =.02,#standard deviation for the noise normal distribution of each arm
           rho            =0, #true correlation between all arms. default should be zero
           upper.bound   =0.85,
           lower.bound   =0.15)