Мы могли бы использовать ggplot
library(ggplot2)
ggplot(Indometh, aes(x = time, y = conc)) +
geom_line()
Или для каждого «предмета»
ggplot(Indometh, aes(x = time, y = conc)) +
geom_line(aes(color = Subject))
В base R
это можно сделать с помощью matplot
matplot(xtabs(conc ~ time + Subject, Indometh), type = 'l', ylab = 'conc')
Обновление
Чтобы установить собственный цвет
colr_set <- rainbow(6)[as.integer(levels(Indometh$Subject))]
matplot(xtabs(conc ~ time + Subject, Indometh), type = 'l',
ylab = 'conc', col =colr_set)
legend("left", legend = levels(Indometh$Subject),
lty = c(1, 1), lwd = c(2.5, 2.5), col = colr_set)