Histogram of p-values
A good diagnostic plot is the histogram of p-values. A large density of low p-values indicates many differentially expressed genes; whereas, a uniformly distributed histogram indicates there are few. Create a p-value histogram for the leukemia study.
Cet exercice fait partie du cours
Differential Expression Analysis with limma in R
Instructions
The fitted model object of the leukemia study from Chapter 2, fit2
, has been loaded in your workspace. The limma package is already loaded.
Use
topTable
to obtain the summary statistics for every gene.To obtain results for every gene, set the argument
number
to be the number of rows offit2
.To disable sorting the results by significance level, set the argument
sort.by
to"none"
.Use
hist
to create a histogram of p-values.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Obtain the summary statistics for every gene
stats <- ___(fit2, number = ___, sort.by = ___)
# Plot a histogram of the p-values
___(stats[, ___])