legTools 0.1.2
An R package containing convenience functions, small GUI to teach statistics and some datasets.
Introduction
legTools is a collection of R functions and datasets, maintained by the LEG group (Statistics and Geoinformation Laboratory, Laboratório de Estatística e Geoinformação).
Download and install
Linux/Mac
Use the devtools
package (available from
CRAN) to
install automatically from this GitLab repository:
library(devtools)
install_git("http://git.leg.ufpr.br/leg/legTools.git")
Alternatively, download the package tarball: legTools_0.1.2.tar.gz and run from a UNIX terminal (make sure you are on the container file directory):
R CMD INSTALL -l /path/to/your/R/library legTools_0.1.2.tar.gz
Or, inside an R
session:
install.packages("legTools_0.1.2.tar.gz", repos = NULL,
lib.loc = "/path/to/your/R/library"
dependencies = TRUE)
Note that -l /path/to/your/R/library
in the former and lib.loc = "/path/to/your/R/library"
in the latter are optional. Only use it if
you want to install in a personal library, other than the standard R
library.
Windows
Download Windows binary version: legTools_0.1.2.zip (do not unzip
it under Windows), put the file in your working directory, and from
inside R
:
install.packages("legTools_0.1.2.zip", repos = NULL,
dependencies = TRUE)
Development version
By default, if you use devtools::install_git()
, or download any of the
package tarball or Windows binary version, it will install the stable
version of the package (from the master
branch of this repository).
If you want to install the development version, you can use
library(devtools)
install_git("http://git.leg.ufpr.br/leg/legTools.git", branch = "devel")
Note that the development version can contain bugs and other unknown features, so use it at your own risk!
Documentation
The reference manual in PDF can be found here: legTools-manual.pdf
Contributing
This R package is develop using roxygen2
for documentation and
devtools
to check and build. Also, we adopt the Gitflow worflow
in this repository. Please, see the
instructions for contributing to collaborate.
License
This package is released under the GNU General Public License (GPL) v3.0.
See LICENSE