在ggplot2中绘制两条线,可以使用以下步骤:
install.packages("ggplot2")
library(ggplot2)
data <- data.frame(x = c(1, 2, 3, 4, 5, 1, 2, 3, 4, 5),
y = c(2, 4, 6, 8, 10, 1, 3, 5, 7, 9),
group = factor(rep(c("A", "B"), each = 5)))
ggplot(data, aes(x = x, y = y, color = group))
ggplot(data, aes(x = x, y = y, color = group)) +
geom_line()
这将在一张图上绘制两条线,分别表示group A和group B。您可以根据需要自定义图形的其他方面,例如添加标题、坐标轴标签等。
领取专属 10元无门槛券
手把手带您无忧上云