使用R語言可以使用ggplot2包來畫多條折線圖。下面是一個(gè)簡(jiǎn)單的示例代碼:
# 導(dǎo)入 ggplot2 包
library(ggplot2)
# 創(chuàng)建一個(gè)數(shù)據(jù)框
data <- data.frame(
x = c(1, 2, 3, 4, 5), # x軸數(shù)據(jù)
y1 = c(2, 4, 6, 8, 10), # 第一條折線圖的y軸數(shù)據(jù)
y2 = c(1, 3, 5, 7, 9) # 第二條折線圖的y軸數(shù)據(jù)
)
# 使用 ggplot 函數(shù)創(chuàng)建一個(gè)繪圖對(duì)象,并設(shè)置數(shù)據(jù)源為 data
p <- ggplot(data)
# 添加第一條折線圖
p <- p + geom_line(aes(x = x, y = y1), color = "blue")
# 添加第二條折線圖
p <- p + geom_line(aes(x = x, y = y2), color = "red")
# 顯示圖形
print(p)
運(yùn)行上述代碼,將會(huì)生成一個(gè)包含兩條折線圖的圖形,其中一條為藍(lán)色,另一條為紅色。你可以根據(jù)自己的需求修改數(shù)據(jù)和樣式。