Creating barplots with error bars in ggplot2
Code
This is where we started before the episode
library(tidyverse)
library(readxl)
library(ggtext)
library(glue)
metadata <- read_excel(path="raw_data/schubert.metadata.xlsx", na="NA")
alpha_diversity <- read_tsv("raw_data/schubert.groups.ave-std.summary") %>%
filter(method == "ave") %>%
select(-label, -method)
metadata_alpha <- inner_join(metadata, alpha_diversity, by=c('sample_id'='group')) %>%
mutate(disease_stat = factor(disease_stat,
levels=c("NonDiarrhealControl",
"DiarrhealControl",
"Case")
)
)
healthy_color <- "#BEBEBE"
diarrhea_color <- "#0000FF"
case_color <- "#FF0000"