當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。