mdatools is an R package for preprocessing, exploring and analysis of multivariate data. The package provides methods mostly common for Chemometrics. It was created for an introductory PhD course on Chemometrics given at Section of Chemical Engineering, Aalborg University. The general idea of the package is to collect most widespread chemometric methods and give a similar “user interface” (or rather API) for using them. So if a user knows how to make a model and visualize results for one method, he or she can easily do this for the others.
For more details and examples read a Bookdown tutorial. The project website, mdatools.com, contains additional information about supplementary materials and tools.
If you want to cite the package, please use the following: Sergey Kucheryavskiy, mdatools – R package for chemometrics, Chemometrics and Intelligent Laboratory Systems, Volume 198, 2020 (DOI: 10.1016/j.chemolab.2020.103937).
Latest release (0.11.1) is available from GitHub. It will be available on CRAN soon (release is expected for 25.07.2020). You can see the full list of changes here. The Bookdown tutorial has been also updated and contains the description of new methods added in the last release.
The package is available from CRAN by usual installing procedure. However, due to restrictions in CRAN politics regarding number of submissions (one in 3-4 month), mostly major releases will be published there (with 2-3 weeks delay after GitHub release as more thorough testing is needed). You can download a zip-file with source package and install it using the install.packages
command, e.g. if the downloaded file is mdatools_0.11.1.tar.gz
and it is located in a current working directory, just run the following:
install.packages("mdatools_0.11.1.tar.gz")
If you have devtools
package installed, the following command will install the current developer version from the master branch of GitHub repository (do not forget to load the devtools
package first):
install_github("svkucheryavski/mdatools")