Displaying 2 results from an estimated 2 matches for "tiikoni".
2013 Feb 26
3
Adding markers and text for some data points after drawing a plot
...quency 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], col="red", xlim=r)
detach(d)
Here's the link to the output: http://www.tiikoni.com/tis/view/?id=5c41810
I want to put markers and the corresponding gene names in the graph for a small list of 6 genes. i.e. say a hollow circle on the curve followed by the corresponding gene name.
I am fighting with this but wasn't able to get a solution.
Any help is appreciated.
Thanks...
2011 Feb 24
1
Gaps in plotting temporal data.
I'm trying to plot some temporal data that have some gaps in them. You
can see the plot here: http://www.tiikoni.com/tis/view/?id=da222e2.
The problem is that during the time gaps in the TS the line plot is
interpolated over the gap and I don't want it to. I've tried
interleaving the gaps with an NA flag, but there are around 10000
data-points sorted from multiple files, that makes it difficult to ad...