W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
折線圖是通過在它們之間繪制線段來連接一系列點(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é)果 -
線圖的特征可以通過使用附加參數(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é)果 -
# 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é)果 -
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: