R語言繪制折線圖實例分析

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

R語言中的plot()函數用於創建折線圖。

語法

在R語言中創建折線圖的基本語法是 –

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

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

  • v是包含數值的向量。
  • 類型采用值“p”僅繪制點,“l”僅繪制線和“o”繪制點和線。
  • xlab是x軸的標簽。
  • ylab是y軸的標簽。
  • main是圖表的標題。
  • col用於給點和線的顏色。

使用輸入向量和類型參數“O”創建簡單的折線圖。 以下腳本將在當前R工作目錄中創建並保存折線圖。

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

當我們執行上面的代碼,它產生以下結果 –

使用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()

當我們執行上面的代碼,它產生以下結果 –

折線圖標記在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()

當我們執行上面的代碼,它產生以下結果 –

折線圖與R中多行

到此這篇關於R語言繪制折線圖實例分析的文章就介紹到這瞭,更多相關R語言折線圖內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀:

    None Found