ma_plot.DESeqResults | R Documentation |
Plot log fold changes vs. log expression level.
## S3 method for class 'DESeqResults' ma_plot( dds_results, outliers = NULL, sig_cutoff = 0.05, sig_up_color = "red4", sig_down_color = "steelblue3", nonsig_color = "gray60", outlier_color = "goldenrod3", sig_alpha = 0.8, nonsig_alpha = 0.4, sig_size = 3, nonsig_size = 2, outlier_size = sig_size * 2.5 ) ma_plot(object, ...) ## S3 method for class 'data.frame' ma_plot( data, basemean_colname, fc_colname, adj_pvalue_colname, outlier_index = NULL, sig_cutoff = 0.05, sig_up_color = "red4", sig_down_color = "steelblue3", nonsig_color = "gray60", outlier_color = "goldenrod3", sig_alpha = 0.8, nonsig_alpha = 0.4, sig_size = 3, nonsig_size = 2, outlier_size = sig_size * 2.5 )
outliers |
A vector of outlier IDs. |
sig_cutoff |
Adjusted p-value significance threshold. |
sig_up_color |
Point color for statistically significant up-regulated features. |
sig_down_color |
Point color for statistically significant down-regulated features. |
nonsig_color |
Point color for features not statistical significant. |
outlier_color |
Point color for statistically significant features flagged as outliers. |
sig_alpha |
Point color alpha value for statistically significant features. |
nonsig_alpha |
Point color alpha value for features not statistically significant. |
sig_size |
Point size value for statistically significant features. |
nonsig_size |
Point size value for outliers. |
object |
A DESeqResults or data.frame object. |
basemean_colname |
A string denoting the column in |
fc_colname |
A string denoting the column in |
adj_pvalue_colname |
A string denoting the column in |
outlier_index |
A numeric vector denoting row indices of outliers. |
Plots the log2 fold change vs log10 expression level for each feature tested for differential expression.
A ggplot2 object.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.