-
Notifications
You must be signed in to change notification settings - Fork 18
/
README.Rmd
135 lines (85 loc) · 4.75 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
---
title: "README"
output: md_document
date: "2022-09-18"
---
# prospectr
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/prospectr)](https://CRAN.R-project.org/package=prospectr)
[![Downloads](https://cranlogs.r-pkg.org/badges/prospectr)](https://cranlogs.r-pkg.org/badges/prospectr)
<img align="right" src="./man/figures/logo.png" width="15%">
<!-- badges: end -->
<em><p align="left"> Misc. Functions for Processing and Sample Selection of Spectroscopic Data </p></em>
_Antoine Stevens & Leo Ramirez-Lopez_
_Last update: `r Sys.Date()`_
Version: `r paste(prospectr:::pkg_info()[1:2], collapse = " \U002D\U002D ")`
`prospectr` is becoming more and more used in spectroscopic applications, which
is evidenced by the number of scientific publications citing the package.
This package is very useful for signal processing and chemometrics in general as
it provides various utilities for pre--processing and sample selection
of spectral data. While similar functions are available in other packages, like
[`signal`](https://CRAN.R-project.org/package=signal), the
functions in this package works indifferently for `data.frame`, `matrix` and
`vector` inputs. Besides, several functions are optimized for speed and use
C++ code through the [`Rcpp`](https://CRAN.R-project.org/package=Rcpp)
and [`RcppArmadillo`](https://CRAN.R-project.org/package=RcppArmadillo)
packages.
## Installing it from GitHub
Install this package from github by:
```
remotes::install_github("l-ramirez-lopez/prospectr")
```
NOTE: in some MAC Os it is still recommended to install `gfortran` and `clang`
from [here](https://cran.r-project.org/bin/macosx/tools/). Even for R >= 4.0.
For more info, check this [issue](https://github.com/tidyverts/fable/issues/193).
## News
Check the NEWS document for new functionality and general changes in the package.
## Vignette
A vignette for `prospectr` explaining its core functionality is available at [https://CRAN.R-project.org/package=prospectr/vignettes/prospectr.html](https://CRAN.R-project.org/package=prospectr/vignettes/prospectr.html).
## Core functionality
A vignette gives an overview of the main functions of the package. Just
type `vignette("prospectr-intro")` in the console to access it. Currently, the
following preprocessing functions are available:
- `resample()` : resample a signal to new coordinates by linear or spline interpolation
- `resample2()` : resample a signal to new coordinates using FWHM values
- `movav()` : moving average
- `standardNormalVariate()` : standard normal variate
- `msc()` : multiplicative scatter correction
- `detrend()` : detrend normalization
- `baseline()` : baseline removal/correction
- `blockScale()` : block scaling
- `blockNorm()` : sum of squares block weighting
- `binning()` : average in column--wise subsets
- `savitzkyGolay()` : Savitzky-Golay filter (smoothing and derivatives)
- `gapDer()` : gap-segment derivative
- `continuumRemoval()` : continuum-removed absorbance or reflectance values
The selection of representative samples/observations for calibration of spectral
models can be achieved with one of the following functions:
- `naes()` : k-means sampling
- `kenStone()` : CADEX (Kennard--Stone) algorithm
- `duplex()` : DUPLEX algorithm
- `shenkWest()` : SELECT algorithm
- `puchwein()` : Puchwein sampling
- `honigs()` : Unique-sample selection by spectral subtraction
Other useful functions are also available:
- `read_nircal()` : read binary files exported from BUCHI NIRCal software
- `readASD()` : read binary or text files from an ASD instrument (Indico Pro format)
- `spliceCorrection()` : correct spectra for steps at the splice of detectors in an ASD FieldSpec Pro
- `cochranTest()` : detects replicate outliers with the Cochran _C_ test
## Citing the package
Antoine Stevens and Leornardo Ramirez-Lopez (2022). An introduction to the prospectr package. R package
Vignette R package version 0.2.4.
A BibTeX entry for LaTeX users is:
```
@Manual{stevens2022prospectr,
title = {An introduction to the prospectr package},
author = {Antoine Stevens and Leornardo Ramirez-Lopez},
publication = {R package Vignette},
year = {2024},
note = {R package version 0.2.7},
}
```
## Bug report and development version
You can send an email to the package maintainer (<[email protected]>)
or create an [issue](https://github.com/l-ramirez-lopez/prospectr/issues) on github.
To install the development version of `prospectr`, simply install [`devtools`](https://CRAN.R-project.org/package=devtools) from
CRAN then run `install_github("l-ramirez-lopez/prospectr")`.