Displaying 2 results from an estimated 2 matches for "genedensitysort".
Did you mean:
genedensitysorted
2012 Jul 09
1
boxplot with "cut"
....459
I'm breaking the "GeneDensity" column into deciles, then making a box plot of the relationship between the GeneDensity parameter and each of the three "ReadCount" columns. Here's an example of one of my boxplot commands:
boxplot(GeneDensity$ReadCount_Explant ~ cut(GeneDensitySorted$GeneDensity, breaks=10), ylim=c(0,40), ylab="RPKM", xlab="GENE DENSITY (LOW -> HIGH)", main="INTERNODE EXPLANT")
Right now, I'm making three separate graphs: one for each of the three "ReadCount" columns. I'd like to put all three sets on one g...
2012 Jul 10
0
Thanks! RE: boxplot with "cut"
...reaking the "GeneDensity" column into deciles, then making a box plot of the relationship between the GeneDensity parameter and each of the three "ReadCount" columns. Here's an example of one of my boxplot commands:
>
> boxplot(GeneDensity$ReadCount_Explant ~
> cut(GeneDensitySorted$GeneDensity, breaks=10), ylim=c(0,40),
> ylab="RPKM", xlab="GENE DENSITY (LOW -> HIGH)", main="INTERNODE
> EXPLANT")
>
> Right now, I'm making three separate graphs: one for each of the three "ReadCount" columns. I'd like to put all...