我有一个R数据框,如下:
data =
position pi match
11 1 0
21 1 0
25 1 0
35 1 1
39 1 1
45 1 1
49 1 1
57 2 0
83 2 0
91 2 0
93 2 0
.....
.....
我可以使用类似的代码来绘制楼梯情况图,以更改match
值:
plot(data$position, data$match, main = "Switch points over the genomic coordinates.", type = "s",
xlab = "genomic position", ylab = "switch points")
这给了我一个像这样的情节:
很好,但是我想用pi
值分隔开关点。我的意思是我想添加一条红线,以唯一的pi
值分隔开关点。