search for: abcd3

Displaying 1 result from an estimated 1 matches for "abcd3".

Did you mean: abcd
2013 Feb 26
3
Adding markers and text for some data points after drawing a plot
Hi All, I have a data set of around 17,000 gene names and their lengths. E.g.           gene      kblength     A3GALT2       14.333    AADACL3       12.609    AADACL4       22.532         ABCA4     128.312        ABCB10      42.114          ABCD3    100.287     ............ ......... and I was able to draw a reverse cumulative frequency plot using the following code: d <- read.table("gene_length_data.txt", header=T) attach(d) kblength.ecdf <-ecdf(kblength) r <-range(kblength) curve(1-kblength.ecdf(x), from=r[1], to=r[2],...