Description Usage Arguments Details Value Author(s) References See Also Examples
The massi_dip function applies the dip test to the subset of y chromosome probe values returned from the massi_select
function. This can be used to indicate if there may be either a male or female bias in the dataset. This function returns a message indicating if the dataset may have a sex bias. The results for massi_dip are not relaible for datasets with 10 or less samples.
1 | massi_dip(y_subset_values)
|
y_subset_values |
A data.frame containing the subset of y chromosome probe values for each sample, as returned from the |
This function caclulates z-scores for the y.chromosome probe values returned from the massi_select
function and then checks if the average z-scores for each sample show a unimodal or multi-modal distribution by applying the dip test. If the proportion of male and female samples in the dataset is relatively balanced, the distribution of average z-scores should be bi-modal. If the distribution looks unimodal, the dataset likely contains a high proportion of one sex. By testing with empirical datasets and randomly generating data subsets with different male/female proportions, guideline values were developed to provide an indication if there is a potential sex bias in the dataset. If the dip statistic is > 0.08 then the dataset is highly likely to have a porportions of male and female samples that will allow the massi_cluster
function to predict the sex of samples with a high degree of accuracy. The results of this test should only be used as a guide and the results should be interpreted in light of the massi_cluster
results. For more details see the massi package vignette.
This function returns a list containing
dip.statistics |
The results from the dip test |
sample.mean.z.score |
The mean of the probe z-scores for each sample used to caclulate the dip statistics |
density |
Density values for the z-scores. Can be informative to plot these results |
Sam Buckberry
Martin Maechler (2013). diptest: Hartigan's dip test statistic for unimodality - corrected code. R package version 0.75-5. http://CRAN.R-project.org/package=diptest
massi_y, massi_select, massi_cluster, massi_y_plot, 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)
massi_select_out <- massi_select(expression_data=massi.test.dataset, y_probes=massi.test.probes, threshold=4)
# Use the list returned from massi.select to calculate dip statistics and z-scores.
massi_dip_out <- massi_dip(y_subset_values=massi_select_out)
# view a density plot
plot(massi_dip_out[[3]])
# view a histogram of z-scores
hist(x=massi_dip_out[[2]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.