R語言中的dim()函數用於獲取或設置指定矩陣、數組或 DataFrame 的維數。
用法: dim(x)
參數:
x:數組、矩陣或 DataFrame 。
範例1:
# R program to illustrate
# dim function
# Getting R Biochemical Oxygen Demand Dataset
BOD
# Getting dimension of the above dataset
dim(BOD)
輸出:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 [1] 6 2
範例2:
# R program to illustrate
# dim function
# Getting the number from 1 to 9
x <- rep(1:9)
x
# Calling the dim() function to
# Set dimension of 3 * 3
dim(x) <- c(3, 3)
# Getting the numbers
# in 3 * 3 representation
x
輸出:
[1] 1 2 3 4 5 6 7 8 9 [, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9
相關用法
- R語言 max.col()用法及代碼示例
- R語言 is.matrix()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 levels()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 structure()用法及代碼示例
- R語言 head()用法及代碼示例
- R語言 tail()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 setdiff()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 max()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 sum()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 range()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get or Set Dimensions of a Matrix in R Programming – dim() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。