The GUI is available only on the 32 bits version of S+ 8.2 for Windows (Linux / Mac / 64 bits support was never provided by TIBCO).
In the S+ command prompt (in Windows, you can open it from S+ Window
menu, Commands Window
item), type:
install.pkgutils()
library(pkgutils)
Save the installation file (binary for Windows, source for Linux) in your working directory and then type:
install.packages("pROC_1.4.9_S_WIN386.zip") # Or for the source version:
install.packages("pROC_1.4.9_S_source.zip")
After loading from the File
menu, item Load Library…
, a new ROC curves
menu is available in the Statistics
menu. You can also load it with the command
library(pROC)
Repeat the installation steps described above, except the install.pkgutils()
command.
1. Preparing S+ for packagesA few steps are necessary in order to be able to load packages in S+.
2. Manual installationIf the automatic installation fails, or if you prefer to download an install a version manually, follow the next steps: A. Downloading pROCDownload the "binary" file for your platform and save it in your S+ working directory (where is it?): B. Installing pROCGo back to the S+ command prompt and type: install.packages("pROC_1.4.9_S_WIN386.zip", repos=NULL) or install.packages("pROC_1.4.9_S_source.zip", repos=NULL) And valid with Enter. Carefully check the output. A warning about a missing 'lib' argument is OK, however make sure there is no error (denoted " 3. Loading pROCYou need to load the package within S+ to enable pROC. Use the library(pROC) Further commentsThe package must be loaded each time you start S+. You may put the line above in a file named Updating pROCRepeat the Manual installation steps described above except the |
How to find the command prompt?
If you are running in Windows, you can open the commands window with the
Where is my S+ working directory?
It is commonly in the getwd() |