当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 get()用法及代码示例


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




相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Search and Return an Object with the specified name in R Programming – get() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。