如何绘图,其中矩阵中的每一行都是 R 中的线 inte 图

How to plot, where each row in a matrix is a line inte plot in R

我有一个要绘制的数据框。我希望每一行都绘制成一条线,但是当我这样做时,它说我的边距太大了。我试图做一个 for 循环,但我是 R 的新手,所以它不起作用。有人可以帮我吗?

我的相框要大得多,是 67x135,但它看起来像这样:

V1 V2 V3 V4 V5   
85 16 13 82 72  
30 71 14 51 43  
13 63 42 37 99
DF <- read.table(text="V1 V2 V3 V4 V5
85 16 13 82 72
30 71 14 51 43
13 63 42 37 99", header = TRUE)

matplot(t(DF), type = "l")