R語言中的ncol()函數用於返回指定矩陣的列數。
用法: ncol(x)
參數:
x: matrix, vector, array or data frame
範例1:
Python3
# R program to illustrate
# ncol function
# Getting R Biochemical Oxygen Demand Dataset
BOD
# Calling ncol() function to
# get the number of columns
ncol(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] 2
範例2:
Python3
# R program to illustrate
# ncol function
# Specifying a matrix
x <- matrix(c(1, 2, 3, 4), 2, 2)
# Calling the ncol() function
ncol(x)
輸出:
[1] 2
相關用法
- R語言 nrow()用法及代碼示例
- R語言 max()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 col()用法及代碼示例
- R語言 colSums()用法及代碼示例
- R語言 merge()用法及代碼示例
- R語言 rename()用法及代碼示例
- R語言 select()用法及代碼示例
- R語言 scale()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 nlevels()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 is.character()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get the number of columns of an Object in R Programming – ncol() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。