Hi all, I'm using this code as a toy example to see if I understand how ggseqlogo works
# Create a data frame with the sequences
sequences <- c("ACA","ATA","AGA","AAA","ATA","AGA")
df <- data.frame(Sequence = sequences)
# Plot the sequence logo
ggseqlogo(df$Sequence)
I fail to understand the results I'm getting.
Why isn't the maximuum 2 bits for positions 0,2? Also, why is the middle poistion (1) isn't populated? We do know that G and T are more common there.