如何防止matplot通过线条样式循环?

时间:2013-08-07 21:22:49

标签: r

如何阻止matplot循环播放不同的线条样式?现在我正在尝试以下两种方式的代码:

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type=c("l","l"), col=1)

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type="l", col=1)

即使我试图明确告诉它只使用折线图,它也会循环遍历所有类型的虚线。

2 个答案:

答案 0 :(得分:5)

只需指定行类型lty

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type="l", col=1, lty=1)

答案 1 :(得分:1)

使用参数lty

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type="l", col=1, lty = 1)