Description Usage Arguments Details Author(s) References See Also Examples
A function to summarize the clustering results obtained from a Poisson
mixture model estimated using coseq
(which indirectly calls
HTSCluster
.
1 2 |
object |
An object of class |
digits |
Integer indicating the number of decimal places to be used for mixture model parameters |
... |
Additional arguments |
The summary function for an object of class "PoisMixClus"
provides the number of clusters selected according to the user-defined
model selection criterion.
Andrea Rau
Rau, A., Maugis-Rabusseau, C., Martin-Magniette, M.-L., Celeux, G. (2015) Co-expression analysis of high-throughput transcriptome sequencing data with Poisson mixture models. Bioinformatics, doi: 10.1093/bioinformatics/btu845.
Rau, A., Celeux, G., Martin-Magniette, M.-L., Maugis-Rabusseau, C. (2011). Clustering high-throughput sequencing data with Poisson mixture models. Inria Research Report 7786. Available at http://hal.inria.fr/inria-00638082.
1 2 3 4 5 6 7 8 9 10 | ## Simulate toy data, n = 300 observations
set.seed(12345)
countmat <- matrix(round(runif(300*4, min=0, max=500)), nrow=300, ncol=4)
countmat <- countmat[which(rowSums(countmat) > 0),]
conds <- rep(c("A","B","C","D"), each=2)
## Run the Poisson mixture model for K = 2,3
run <- coseq(y=countmat, K=2:3, iter=5, model="Poisson")
plot(run)
summary(run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.