Chapter 8 Plotting
Just like differential abundance, volcano plots are great to explore differential expression results. Volcano plots will be obtained again using the plot_volcano()
function.
<- as.data.frame(res) %>%
res_df rownames_to_column(var = 'FeatureID') %>%
drop_na()
<- plot_volcano(res_df,
volcano column_with_log2FC = log2FoldChange,
column_with_pval = padj,
log2FC.threshold = 2,
pval.threshold = 0.05)
volcano