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 7 and Version 8 of Installation


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v7 v8  
    3636Install the statistical software R. See [https://www.r-project.org].
    3737
    38 ==== Windows Users ====
     38==== Add bin folder to the PATH (for Windows users) ====
    3939
    40 Add R 'bin' folder to the environment variable PATH.
     40For allow TOL to find R, you should ensure that the R 'bin' folder is in the environment variable PATH.
    4141
    4242 * R 'bin folder: [[BR]] {{{%PROGRAMFILES%\R\R-3.2.2\bin}}} [[BR]] (version number may be different)
    4343
     44You can edit the environment variable PATH as usual.
    4445
    4546=== Install some R-packages ===
    4647
     48Some of the mentioned TOL packages requires from some R-packages: quadprog, coda, Rglpk, slam and mcgibbsit.
     49
     50To install it, you can run the following sentences in R:
    4751{{{
    48 #!cpp
     52#!ruby
    4953install.packages("quadprog")
    50 install.packages("coda")
    51 install.packages("Rglpk")
     54install.packages("coda") # imports: lattice
     55install.packages("mcgibbsit") # depends: coda
    5256install.packages("slam")
    53 install.packages("mcgibbsit")
     57install.packages("Rglpk") # depends: slam
    5458}}}
    55 
    56 
    5759
    5860== External downloads required ==