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.
- Timestamp:
-
Feb 4, 2016, 12:17:03 PM (9 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v7
|
v8
|
|
36 | 36 | Install the statistical software R. See [https://www.r-project.org]. |
37 | 37 | |
38 | | ==== Windows Users ==== |
| 38 | ==== Add bin folder to the PATH (for Windows users) ==== |
39 | 39 | |
40 | | Add R 'bin' folder to the environment variable PATH. |
| 40 | For allow TOL to find R, you should ensure that the R 'bin' folder is in the environment variable PATH. |
41 | 41 | |
42 | 42 | * R 'bin folder: [[BR]] {{{%PROGRAMFILES%\R\R-3.2.2\bin}}} [[BR]] (version number may be different) |
43 | 43 | |
| 44 | You can edit the environment variable PATH as usual. |
44 | 45 | |
45 | 46 | === Install some R-packages === |
46 | 47 | |
| 48 | Some of the mentioned TOL packages requires from some R-packages: quadprog, coda, Rglpk, slam and mcgibbsit. |
| 49 | |
| 50 | To install it, you can run the following sentences in R: |
47 | 51 | {{{ |
48 | | #!cpp |
| 52 | #!ruby |
49 | 53 | install.packages("quadprog") |
50 | | install.packages("coda") |
51 | | install.packages("Rglpk") |
| 54 | install.packages("coda") # imports: lattice |
| 55 | install.packages("mcgibbsit") # depends: coda |
52 | 56 | install.packages("slam") |
53 | | install.packages("mcgibbsit") |
| 57 | install.packages("Rglpk") # depends: slam |
54 | 58 | }}} |
55 | | |
56 | | |
57 | 59 | |
58 | 60 | == External downloads required == |