| plot_volcano {PlateVision} | R Documentation |
Plot Volcano (Log2FC vs P-value)
Description
Creates a volcano plot to identify significantly regulated genes.
Usage
plot_volcano(results, p_cutoff = 0.05, fc_cutoff = 1)
Arguments
results |
Output from calculate_ddct(). |
p_cutoff |
Significance threshold (default 0.05). |
fc_cutoff |
Log2 Fold Change threshold (default 1). |
Value
A ggplot object.
Examples
# Mock results data
results <- data.frame(
log2_fc = c(2.5, -3.0, 0.1, 1.5),
p_val = c(0.001, 0.0001, 0.8, 0.04)
)
plot_volcano(results)
[Package PlateVision version 0.1.0 Index]