R語言 折線圖

2022-06-16 15:37 更新

折線圖是通過在它們之間繪制線段來連接一系列點(diǎn)的圖。 這些點(diǎn)在它們的坐標(biāo)(通常是x坐標(biāo))值之一中排序。 折線圖通常用于識別數(shù)據(jù)中的趨勢。

R語言中的plot()函數(shù)用于創(chuàng)建折線圖。

語法

在R語言中創(chuàng)建折線圖的基本語法是 -

plot(v,type,col,xlab,ylab)

以下是所使用的參數(shù)的描述 - 

  • v是包含數(shù)值的向量。

  • 類型采用值“p”僅繪制點(diǎn),“l(fā)”僅繪制線和“o”繪制點(diǎn)和線。

  • xlab是x軸的標(biāo)簽。

  • ylab是y軸的標(biāo)簽。

  • main是圖表的標(biāo)題。

  • col用于給點(diǎn)和線的顏色。

使用輸入向量和類型參數(shù)“O”創(chuàng)建簡單的折線圖。 以下腳本將在當(dāng)前R工作目錄中創(chuàng)建并保存折線圖。

# Create the data for the chart.
v <- c(7,12,28,3,41)

# Give the chart file a name.
png(file = "line_chart.jpg")

# Plot the bar chart. 
plot(v,type = "o")

# Save the file.
dev.off()

當(dāng)我們執(zhí)行上面的代碼,它產(chǎn)生以下結(jié)果 -

使用R線圖

折線圖標(biāo)題,顏色和標(biāo)簽

線圖的特征可以通過使用附加參數(shù)來擴(kuò)展。 我們向點(diǎn)和線添加顏色,為圖表添加標(biāo)題,并向軸添加標(biāo)簽。

# Create the data for the chart.
v <- c(7,12,28,3,41)

# Give the chart file a name.
png(file = "line_chart_label_colored.jpg")

# Plot the bar chart.
plot(v,type = "o", col = "red", xlab = "Month", ylab = "Rain fall",
   main = "Rain fall chart")

# Save the file.
dev.off()

當(dāng)我們執(zhí)行上面的代碼,它產(chǎn)生以下結(jié)果 -

折線圖標(biāo)記在R型

多線型折線圖

通過使用lines()函數(shù),可以在同一個圖表上繪制多條線。
在繪制第一行之后,lines()函數(shù)可以使用一個額外的向量作為輸入來繪制圖表中的第二行。

# Create the data for the chart.
v <- c(7,12,28,3,41)
t <- c(14,7,6,19,3)

# Give the chart file a name.
png(file = "line_chart_2_lines.jpg")

# Plot the bar chart.
plot(v,type = "o",col = "red", xlab = "Month", ylab = "Rain fall", 
   main = "Rain fall chart")

lines(t, type = "o", col = "blue")

# Save the file.
dev.off()

當(dāng)我們執(zhí)行上面的代碼,它產(chǎn)生以下結(jié)果 -

折線圖與R中多行
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號