當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 dim()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get or Set Dimensions of a Matrix in R Programming – dim() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。