I'm struggling to find a suitable graph to represent the sample of the data below. I would like to see the data in a bar chart or something similar where i can compare both methods side by side. Can anyone help please?
df <- data.frame(
total.counts.Method01 = c(0L, 33L, 260L, 413L, 468L, 577L, 659L, 520L, 579L,
570L),
total.counts.method02 = c(78L, 78L, 193L, 234L, 247L, 311L, 312L, 320L, 312L,
321L)
)
Created on 2020-05-27 by the reprex package (v0.3.0)
Many Thanks