Description Usage Arguments Value Examples
View source: R/DataAlignment.R
Align the monitoring sample X
and the reference sample Y
.
1 2 3 4 5 6 7 | dataAlignment(
X,
Y,
alignment = "unadjusted",
constant = NULL,
absolute = FALSE
)
|
X |
vector. Monitoring sample. |
Y |
vector. Reference sample. |
alignment |
character string. Aligment of the data
|
constant |
scalar. Only used when the |
absolute |
logical. If |
Multiple output. Select by output$
X
: vector. Monitor sample with the alignment selected.
Y
: vector. Reference sample with the alignment selected.
1 2 3 | X = c(30, 45, 50)
Y = c(20, 22, 25, 30, 70)
dataAlignment(X,Y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.