close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 8 and Version 9 of Installation


Ignore:
Timestamp:
Feb 4, 2016, 12:26:52 PM (9 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v8 v9  
    3030== Additional installation instructions ==
    3131
    32 Some TOL packages (for example, BysInfDiag) uses R calls to obtain some statistic information. For avoid errors when you use these packages we recommend:
     32Some 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:
    3333
    3434=== Install R ===
     
    4646=== Install some R-packages ===
    4747
    48 Some of the mentioned TOL packages requires from some R-packages: quadprog, coda, Rglpk, slam and mcgibbsit.
     48Some of the mentioned TOL packages requires from some R-packages:
    4949
    50 To install it, you can run the following sentences in R:
     50 1. [http://cran.r-project.org/web/packages/quadprog/index.html quadprog] : Functions to solve Quadratic Programming Problems.
     51 1. [http://www-fis.iarc.fr/coda/ coda] : Output analysis and diagnostics for MCMC.
     52 1. [http://cran.r-project.org/web/packages/mcgibbsit/index.html mcgibbsit] : provides an implementation of Warnes & Raftery's MCGibbsit run-length diagnostic for a set of (not-necessarily independent) MCMC samplers
     53 1. [http://cran.r-project.org/web/packages/slam/index.html slam] : Sparse Lightweight Arrays and Matrices.
     54 1. [http://cran.r-project.org/web/packages/Rglpk/Rglpk.pdf Rglpk] : solving large-scale linear programming (LP), mixed integer linear programming (MILP) and other related problems.
     55
     56All them are available as CRAN standard package and can be installed from R-GUI application using the option "Install package" from menu "Package".
     57
     58Otherwise, you also can run the following sentences in an R console:
    5159{{{
    5260#!ruby
     
    5866}}}
    5967
    60 == External downloads required ==
    61 
    62 In order to use some TOL functions and subsystems it's also needed to install another open source packages or libraries, that are listed in TolAcknowledgements. Linux systems have should have their own package manager (RPM, DEB, etc) for almost all these components. In other case user must install them following owner instructions. For Windows 32 bits systems all them are prebuilt in a transparent way for ussers and are distributed with TOL Binary Setup.
    63 
    64 !!!!
    65 
    66 All them but R, are linked by TOL and calling is made internally by C or C++ interface. TOL calls R (>=2.6.0) by command line, so it must be installed in your system directly from [http://www.r-project.org/ the official R site]. Note that R console executable must be in user path environment variable. Afterwords installing R user must install these R packages:
    67  1. [http://cran.r-project.org/web/packages/quadprog/index.html quadprog] : Functions to solve Quadratic Programming Problems.
    68  1. [http://www-fis.iarc.fr/coda/ coda] : Output analysis and diagnostics for MCMC.
    69  1. [http://cran.r-project.org/web/packages/Rglpk/Rglpk.pdf Rglpk] : solving large-scale linear programming (LP), mixed integer linear programming (MILP) and other related problems.
    70  1. [http://cran.r-project.org/web/packages/slam/index.html slam] : Sparse Lightweight Arrays and Matrices.
    71  1. [http://cran.r-project.org/web/packages/mcgibbsit/index.html] : provides an implementation of Warnes & Raftery's MCGibbsit run-length diagnostic for a set of (not-necessarily independent) MCMC samplers
    72 
    73 All them are available as CRAN standard package and can be installed from R-Gui application using menu Package / Install package.
    74 You also can run this commands from an R console:
    75 {{{
    76   install.packages("quadprog")
    77   install.packages("coda")
    78   install.packages("Rglpk")
    79   install.packages("slam")
    80   install.packages("mcgibbsit")
    81 }}}
    82 
    83 In Debian based LINUX the simplest way is following these steps
    84 {{{
    85   sudo apt-get install r-base
    86   sudo apt-get install r-cran-quadprog
    87   sudo apt-get install r-cran-coda
    88   sudo apt-get install r-cran-rglpk
    89   sudo apt-get install r-cran-slam
    90   sudo apt-get install r-cran-mcgibbsit
    91 }}}