R語言 折線圖

2022-06-16 15:37 更新

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

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

語法

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

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

以下是所使用的參數的描述 - 

  • v是包含數值的向量。

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

  • xlab是x軸的標簽。

  • ylab是y軸的標簽。

  • main是圖表的標題。

  • col用于給點和線的顏色。

使用輸入向量和類型參數“O”創(chuà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()

當我們執(zhí)行上面的代碼,它產生以下結果 -

使用R線圖

折線圖標題,顏色和標簽

線圖的特征可以通過使用附加參數來擴展。 我們向點和線添加顏色,為圖表添加標題,并向軸添加標簽。

# 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()

當我們執(zhí)行上面的代碼,它產生以下結果 -

折線圖標記在R型

多線型折線圖

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

# 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()

當我們執(zhí)行上面的代碼,它產生以下結果 -

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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號