R語言繪制散點圖實例分析
散點圖顯示在笛卡爾平面中繪制的許多點。 每個點表示兩個變量的值。 在水平軸上選擇一個變量,在垂直軸上選擇另一個變量。
使用plot()函數創建簡單散點圖。
語法
在R語言中創建散點圖的基本語法是 –
plot(x, y, main, xlab, ylab, xlim, ylim, axes)
以下是所使用的參數的描述 –
- x是其值為水平坐標的數據集。
- y是其值是垂直坐標的數據集。
- main要是圖形的圖塊。
- xlab是水平軸上的標簽。
- ylab是垂直軸上的標簽。
- xlim是用於繪圖的x的值的極限。
- ylim是用於繪圖的y的值的極限。
- axes指示是否應在繪圖上繪制兩個軸。
例
我們使用R語言環境中可用的數據集“mtcars”來創建基本散點圖。 讓我們使用mtcars中的“wt”和“mpg”列。
input <- mtcars[,c('wt','mpg')] print(head(input))
當我們執行上面的代碼,它產生以下結果 –
wt mpg Mazda RX4 2.620 21.0 Mazda RX4 Wag 2.875 21.0 Datsun 710 2.320 22.8 Hornet 4 Drive 3.215 21.4 Hornet Sportabout 3.440 18.7 Valiant 3.460 18.1
創建散點圖
以下腳本將為wt(重量)和mpg(英裡/加侖)之間的關系創建一個散點圖。
# Get the input values. input <- mtcars[,c('wt','mpg')] # Give the chart file a name. png(file = "scatterplot.png") # Plot the chart for cars with weight between 2.5 to 5 and mileage between 15 and 30. plot(x = input$wt,y = input$mpg, xlab = "Weight", ylab = "Milage", xlim = c(2.5,5), ylim = c(15,30), main = "Weight vs Milage" ) # Save the file. dev.off()
當我們執行上面的代碼,它產生以下結果 –
散點圖矩陣
當我們有兩個以上的變量,我們想找到一個變量和其餘變量之間的相關性,我們使用散點圖矩陣。 我們使用pairs()函數創建散點圖的矩陣。
語法
在R中創建散點圖矩陣的基本語法是 –
pairs(formula, data)
以下是所使用的參數的描述 –
-
formula表示成對使用的一系列變量。
-
data表示將從其獲取變量的數據集。
例
每個變量與每個剩餘變量配對。 為每對繪制散點圖。
# Give the chart file a name. png(file = "scatterplot_matrices.png") # Plot the matrices between 4 variables giving 12 plots. # One variable with 3 others and total 4 variables. pairs(~wt+mpg+disp+cyl,data = mtcars, main = "Scatterplot Matrix") # Save the file. dev.off()
當執行上面的代碼中,我們得到以下輸出。
以上就是R語言繪制散點圖實例分析的詳細內容,更多關於R語言散點圖的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- None Found