• 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

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)
ABCDEFGHIJ0123456789
 
 
readlength
<int>
SampleID
<fctr>
1101GC100B
2101GC100B
3101GC100B
4101GC100B
5101GC100B
6101GC100B
#scatterplot SampleID vs. Age
ggplot(data=newdata)+ 
  geom_boxplot(aes(x=SampleID, y=readlength))