Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 925 Bytes

File metadata and controls

39 lines (33 loc) · 925 Bytes

RanCh

An R project providing tools and data for abstract discrete Random Choice analysis.

To install and load, update R to at least version 3.6.0, then at the R prompt:

  1. Install devtools package, load it, then load RanCh package (to do once)
install.packages("devtools")
library(devtools)
install_github("mccauslw/RanCh", build_vignettes=TRUE)
  1. Load RanCh package (to do each R session before using package)
library(RanCh)

Other useful information:

  • To get help for RanCh package:
help(RanCh)
  • To get list of all functions, with short descriptions:
library(help='RanCh')
  • To get help on a particular function:
help('regularity')
  • To read vignette: (an introduction to the RanCh package with examples)
vignette('main_vignette', package='RanCh')