jackstraw_kmeans {jackstraw} | R Documentation |
Non-Parametric Jackstraw for K-means Clustering
Description
Test the cluster membership for K-means clustering
Usage
jackstraw_kmeans(
dat,
kmeans.dat,
s = NULL,
B = NULL,
center = FALSE,
covariate = NULL,
match = TRUE,
pool = TRUE,
verbose = FALSE,
...
)
Arguments
dat |
a matrix with |
kmeans.dat |
an output from applying |
s |
a number of “synthetic” null variables. Out of |
B |
a number of resampling iterations. |
center |
a logical specifying to center the rows of the null samples. By default, |
covariate |
a model matrix of covariates with |
match |
a logical specifying to match the observed clusters and jackstraw clusters using minimum Euclidean distances. |
pool |
a logical specifying to pool the null statistics across all clusters. By default, |
verbose |
a logical specifying to print the computational progress. By default, |
... |
optional arguments to control the k-means clustering algorithm (refers to |
Details
K-means clustering assign m
rows into K
clusters. This function enable statistical
evaluation if the cluster membership is correctly assigned. Each of m
p-values refers to
the statistical test of that row with regard to its assigned cluster.
Its resampling strategy accounts for the over-fitting characteristics due to direct computation of clusters from the observed data
and protects against an anti-conservative bias.
The input data (dat
) must be of a class 'matrix'.
Value
jackstraw_kmeans
returns a list consisting of
F.obs |
|
F.null |
F null statistics between null variables and cluster centers, from the jackstraw method. |
p.F |
|
Author(s)
Neo Christopher Chung nchchung@gmail.com
References
Chung (2020) Statistical significance of cluster membership for unsupervised evaluation of cell identities. Bioinformatics, 36(10): 3107–3114 https://academic.oup.com/bioinformatics/article/36/10/3107/5788523
Examples
## Not run:
dat = t(scale(t(Jurkat293T), center=TRUE, scale=FALSE))
kmeans.dat <- kmeans(dat, centers=2, nstart = 10, iter.max = 100)
jackstraw.out <- jackstraw_kmeans(dat, kmeans.dat)
## End(Not run)