我有这样的数据,我想在R中绘制多行,包含SC1
,SC2
,SC3
,SC4
和{{1}的行},SC5
为xlab
(从1到10)。
chr
答案 0 :(得分:1)
快速而轻微的方法是使用?matlines
# assume d is your data
plot(d$chr, d$pos) # plots the data as points
matlines(d$chr, d[,-(1:2)]) # plots every column except 1,2 against d$chr