identity()
R語言中的函數用於打印作為參數傳遞給它的對象的值。
用法: identity(x)
參數:
x:一個東西
範例1:
# R program to print
# the value of an object
# Creating a vector
x <- c(1, 2, 3, 4)
# Creating a list
list1 <- list(letters[1:6])
# Calling the identity function
identity(x)
identity(list1)
輸出:
[1] 1 2 3 4 [[1]] [1] "a" "b" "c" "d" "e" "f"
範例2:
# R program to print
# the value of an object
# Calling predefined data frame
x1 <- BOD
# Creating a matrix
mat <- matrix(c(1:9), 3, 3, byrow = T)
# Calling the identity() Function
identity(x1)
identity(mat)
輸出:
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] [, 3] [1, ] 1 2 3 [2, ] 4 5 6 [3, ] 7 8 9
相關用法
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 print()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 is.factor()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 unique()用法及代碼示例
- R語言 max()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 str()用法及代碼示例
- R語言 cumsum()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 order()用法及代碼示例
- R語言 rowMeans()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 as.list()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Print the Value of an Object in R Programming – identity() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。