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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。