plot_bars {PlateVision}R Documentation

Plot Fold Change (Bar Chart)

Description

Aggregates biological replicates and plots the Group Mean +/- SEM.

Usage

plot_bars(results)

Arguments

results

Output from calculate_ddct().

Value

A ggplot object.

Examples

# Mock results data
results <- data.frame(
  Gene = c("GeneA", "GeneA", "GeneB", "GeneB"),
  Group = c("WT", "Treated", "WT", "Treated"),
  fold_change = c(1, 5, 1, 0.5)
)

plot_bars(results)

[Package PlateVision version 0.1.0 Index]