按块分割R中的楼梯案例图

时间:2018-09-02 17:58:47

标签: r plot block

我有一个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")

这给了我一个像这样的情节:

Switch points by genomic co-ordinates.

很好,但是我想用pi值分隔开关点。我的意思是我想添加一条红线,以唯一的pi值分隔开关点。

0 个答案:

没有答案