check.data | R Documentation |
The input data matrix (X
), number of end-members (q
),
weight transformation limits (l) and constant sum scaling parameter
(c
) are checked. This includes checking for absence of missing
values, columns containing only zero-values and for numeric data type of
all variables. A further check tests if l
is below the maximum
possible value, preventing numerical instability prior to factor rotation.
check.data(X, q, l, c, ...)
X |
|
q |
|
l |
|
c |
|
... |
Further arguments passed to the function. |
Character
vector, verbose test results.
Michael Dietze, Elisabeth Dietze
EMMA
## load example data set
data(example_X)
## perform data set check
check.data(X = X,
q = 6,
l = seq(from = 0,
to = 0.2,
by = 0.01),
c = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.