home

The box plot below shows the differences in readlengths for the three samples. All samples with less than 30 and greater than 230 base pairs in length were nulled from the plot

library(ggplot2)
newdata = read.csv('/usr/share/data/classfiles/readlengths3.txt', sep=' ')
head(newdata)
#scatterplot SampleID vs. Age
ggplot(data=newdata)+ 
  geom_boxplot(aes(x=SampleID, y=readlength))