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