您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關R語言如何使用函數barplot()創建條形圖,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
條形圖表示矩形條中的數據,條的長度與變量的值成比例。 R語言使用函數 barplot() 創建條形圖。 R 語言可以在條形圖中繪制垂直和水平條。 在條形圖中,每個條可以給予不同的顏色。
在 R 語言中創建條形圖的基本語法是
H 是包含在條形圖中使用的數值的向量或矩陣。
xlab 是 x 軸的標簽。
ylab 是 y 軸的標簽。
main 是條形圖的標題。
names.arg 是在每個條下出現的名稱的向量。
col 用于向圖中的條形提供顏色。
barplot(H, xlab, ylab, main, names.arg, col)
以下是所使用的參數的描述 -
使用輸入向量和每個條的名稱創建一個簡單的條形圖。
以下腳本將創建并保存當前 R 語言工作目錄中的條形圖。
# Create the data for the chart. H <- c(7,12,28,3,41) # Give the chart file a name. png(file = "barchart.png") # Plot the bar chart. barplot(H) # Save the file. dev.off()
當我們執行上面的代碼,它產生以下結果 -
可以通過添加更多參數來擴展條形圖的功能。 主要參數用于添加標題。 col 參數用于向條形添加顏色。 name.args 是具有與輸入向量相同數量的值的向量,以描述每個條的含義。
以下腳本將在當前R語言工作目錄中創建并保存條形圖。
# Create the data for the chart. H <- c(7,12,28,3,41) M <- c("Mar","Apr","May","Jun","Jul") # Give the chart file a name. png(file = "barchart_months_revenue.png") # Plot the bar chart. barplot(H,names.arg = M,xlab = "Month",ylab = "Revenue",col = "blue", main = "Revenue chart",border = "red") # Save the file. dev.off()
當我們執行上面的代碼,它產生以下結果 -
我們可以使用矩陣作為輸入值,在每個條中創建條形圖和堆疊組的條形圖。
超過兩個變量表示為用于創建組合條形圖和堆疊條形圖的矩陣。
# Create the input vectors. colors <- c("green","orange","brown") months <- c("Mar","Apr","May","Jun","Jul") regions <- c("East","West","North") # Create the matrix of the values. Values <- matrix(c(2,9,3,11,9,4,8,7,3,12,5,2,8,10,11),nrow = 3,ncol = 5,byrow = TRUE) # Give the chart file a name. png(file = "barchart_stacked.png") # Create the bar chart. barplot(Values,main = "total revenue",names.arg = months,xlab = "month",ylab = "revenue", col = colors) # Add the legend to the chart. legend("topleft", regions, cex = 1.3, fill = colors) # Save the file. dev.off()
關于“R語言如何使用函數barplot()創建條形圖”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。