Version 10 (modified by 9 years ago) (diff) | ,
---|
Home
TOL
Software
Download
Installation
Packages
OTAN
TOL Project
About TOL
Manuals
Development
R-Projects
Other Links
Trac Guide
Wiki Tree
MMS
Installation
TOL download
Firstly, you should download the installer and run it. See Download.
Additional installation instructions
Some TOL packages (for example, BysInfDiag) uses R calls (by command line) to obtain some statistic information. For avoid errors when you use these packages we recommend:
Install R
Install the statistical software R. See https://www.r-project.org.
Add bin folder to the PATH (for Windows users)
For allow TOL to find R, you should ensure that the R 'bin' folder is in the environment variable PATH.
- R 'bin folder:
%PROGRAMFILES%\R\R-3.2.2\bin
(version number may be different)
You can edit the environment variable PATH as usual.
Install some R-packages
Some of the mentioned TOL packages requires from some R-packages:
- quadprog : Functions to solve Quadratic Programming Problems.
- coda : Output analysis and diagnostics for MCMC.
- mcgibbsit : provides an implementation of Warnes & Raftery's MCGibbsit run-length diagnostic for a set of (not-necessarily independent) MCMC samplers
- slam : Sparse Lightweight Arrays and Matrices.
- Rglpk : solving large-scale linear programming (LP), mixed integer linear programming (MILP) and other related problems.
All them are available as CRAN standard package and can be installed from R-GUI application using the option "Install package" from menu "Package".
Otherwise, you also can run the following sentences in an R console:
install.packages("quadprog") install.packages("coda") # imports: lattice install.packages("mcgibbsit") # depends: coda install.packages("slam") install.packages("Rglpk") # depends: slam
TOL+R
From TOL 3.3 onwards, TOL provides a natural communication with R.
Two packages allow us to do than (tolRlink for R) and (TolRInside for TOL).
For more details, see TOL+R.