Contact

Claudia Beleites
Chemometric Consulting
Södeler Weg 19
61200 Wölfersheim/Germany
e-mail: claudia dot beleites at chemometrix dot eu

#Download & Installation

There are several ways to obtain softclassval.

Install stable version

Inside R type:

> install.packages ("softclassval")
to install the stable version from CRAN.

» top

Install nightly build

To install the nightly build (development version) from R-Forge, inside R type:
> install.packages ("softclassval", repos="http://r-forge.r-project.org")
Nightly builds of Windows binaries are sometimes a few day delayed.
» top

Install from .tar.gz or .zip archive

Source (.tar.gz) and Windows binary (.zip) packages can be installed by

command line:

$ R CMD INSTALL filename.tar.gz

in RStudio

click "Install Packages" in the package tab and then select "Install from: Package Archive"
Do not unpack the archive.

» top

Clone svn repository

svn users:

checkout using your favourite svn client program, or

$ svn checkout svn://svn.r-forge.r-project.org/svnroot/softclassval/pkg

git users:

git-svn is highly recommended:

$ git svn clone  svn://svn.r-forge.r-project.org/svnroot/softclassval/pkg \
> softclassval
-rHEAD makes a shallow copy retrieving only the most recent revision.

Install from repository clone

Build and install the package:

$ R CMD build pkg/
$ R CMD INSTALL softclassval_0.xx-yyyymmdd.tar.gz

» top