Displaying 1 result from an estimated 1 matches for "shared_specific".
How to predict significant dominant regions of two sequence of numeric values by Hidden Markov Model
2011 Jul 13
0
How to predict significant dominant regions of two sequence of numeric values by Hidden Markov Model
...lt;- data.frame(coordinate.1=rep(1:8, each=25),
coordinate.2=rep(seq(100, 2500, 100), 8),
shared=rep(c(100,30,100), c(5,15,5)),
specific=rep(c(25,90,20,30), c(5,7,8,5)))
Here is how I happen to make a plot:
library(ggplot2)
pdf("shared_specific.pdf", width = 14, height = 8)
p.test<-ggplot(mydata, aes(coordinate.2)) +
geom_line(aes(y = shared, colour = "shared")) +
geom_line(aes(y = specific, colour = "specific")) +
facet_grid(coordinate.1 ~., scales = "free_x") +
scale_x_co...