您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關使用R語言怎么創建一個箱線圖,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
R語言中使用boxplot()函數來創建箱線圖。
在R語言中創建箱線圖的基本語法是 -
boxplot(x, data, notch, varwidth, names, main)
以下是所使用的參數的描述 -
x是向量或公式。
數據是數據幀。
notch是邏輯值。 設置為TRUE以繪制凹口。
varwidth是一個邏輯值。 設置為true以繪制與樣本大小成比例的框的寬度。
names是將打印在每個箱線圖下的組標簽。
main用于給圖表標題。
我們使用R語言環境中可用的數據集“mtcars”來創建基本箱線圖。 讓我們看看mtcars中的列“mpg”和“cyl”。
input <- mtcars[,c('mpg','cyl')] print(head(input))
當我們執行上面的代碼,它會產生以下結果 -
mpg cyl Mazda RX4 21.0 6 Mazda RX4 Wag 21.0 6 Datsun 710 22.8 4 Hornet 4 Drive 21.4 6 Hornet Sportabout 18.7 8 Valiant 18.1 6
以下腳本將為mpg(英里/加侖)和cyl(氣缸數)之間的關系創建箱線圖。
# Give the chart file a name. png(file = "boxplot.png") # Plot the chart. boxplot(mpg ~ cyl, data = mtcars, xlab = "Number of Cylinders", ylab = "Miles Per Gallon", main = "Mileage Data") # Save the file. dev.off()
當我們執行上面的代碼,它產生以下結果 -
我們可以繪制帶槽的箱線圖,以了解不同數據組的中值如何相互匹配。
以下腳本將為每個數據組創建一個帶缺口的箱線圖。
# Give the chart file a name. png(file = "boxplot_with_notch.png") # Plot the chart. boxplot(mpg ~ cyl, data = mtcars, xlab = "Number of Cylinders", ylab = "Miles Per Gallon", main = "Mileage Data", notch = TRUE, varwidth = TRUE, col = c("green","yellow","purple"), names = c("High","Medium","Low") ) # Save the file. dev.off()
當我們執行上面的代碼,它產生以下結果 -
看完上述內容,你們對使用R語言怎么創建一個箱線圖有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。