3

如何阻止 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)

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

4

2 回答 2

5

只需指定线型,lty​​:

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type="l", col=1, lty=1)
于 2013-08-07T21:25:33.543 回答
1

使用论据lty

matplot(cbind(c(1,3,7,3), c(2,4,4,7)), type="l", col=1, lty = 1)
于 2013-08-07T21:26:00.003 回答