Description Usage Arguments Details Value Author(s) References See Also Examples
The massi_cluster function predicts the sex of samples using k-medoids clustering.
1 | massi_cluster(y_data)
|
y_data |
the y_data object is the data.frame returned from the |
This function clusters samples into two clusters using y chromosome probe values. K-medoids clustering is performed using the partitioning around medoids (pam) method implimented in the "fpc" package. The cluster with the highest probe values is determined to be the cluster of male samples and the cluster the lowest values as female samples.
cluster data |
Contains all of the results from the k-medoids clustering. |
massi.results |
Contains the results for each sample, including sample id, predicted sex, sample z-score and mean probe expression. |
Sam Buckberry
Christian Hennig (2013). fpc: Flexible procedures for clustering. R package version 2.1-6. http://CRAN.R-project.org/package=fpc
massi_y, massi_select, massi_y_plot, massi_dip, massi_cluster_plot
1 2 3 4 5 6 7 8 9 10 11 12 13 | # load the test dataset
data(massi.test.dataset, massi.test.probes)
# select the y chromosome probes using massi_select
massi_select_out <-
massi_select(massi.test.dataset, massi.test.probes)
# cluster samples to predict sex using massi_cluster
massi_cluster_out <-
massi_cluster(massi_select_out)
# get the results in a data.frame format
data.frame(massi_cluster_out[[2]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.