get()
R語言中的函數用於返回一個對象,其名稱指定為函數的參數。這是另一種打印對象值的方法,就像打印函數一樣。此函數還可用於將一個對象複製到另一個對象。
用法: get(object)
參數:
object:向量、數組、列表等。
範例1:
# R program to illustrate
# the use of get() Function
# Creating vectors
x1 <- c("abc", "cde", "def")
x2 <- c(1, 2, 3)
x3 <- c("M", "F")
# Calling get() Function
# for print operation
get("x2")
# Assigning to another vector
x4 <- get("x3")
print(x4)
輸出:
[1] 1 2 3 [1] "M" "F"
範例2:
# R program to illustrate
# the use of get() Function
# Creating vectors
x1 <- c("abc", "cde", "def")
x2 <- c(1, 2, 3)
# Creating a list of vectors
list1 <- list(x1, x2)
# Calling get() Function
# for print operation
get("list1")
輸出:
[[1]] [1] "abc" "cde" "def" [[2]] [1] 1 2 3
相關用法
- R語言 exists()用法及代碼示例
- R語言 as.name()用法及代碼示例
- R語言 is.name()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 seq.int()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 max()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 lower.tri()用法及代碼示例
- R語言 upper.tri()用法及代碼示例
- R語言 which.min()用法及代碼示例
- R語言 which.max()用法及代碼示例
- R語言 complete.cases()用法及代碼示例
- R語言 search()用法及代碼示例
- R語言 word()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Search and Return an Object with the specified name in R Programming – get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。