我正在使用lines()函数在R中绘制一条线。
请参见下面的代码。
plot(t, type = "o",col = "red",
xlab = "Usefulness/satisfaction",
ylab = "Counts",
main = "Van der Laan usefulness/satisfaction scale")
lines(h, type = "o", col = "cyan")
现在,我想向数据点和图例添加标签。
您知道我该怎么做吗? 我做了一些研究,但并没有真正成功。