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


R語言 deparse()用法及代碼示例


deparse()R語言中的函數用於將表達式類的對象轉換為字符類的對象。

用法: deparse(expr)

參數:
expr:表達式類對象

範例1:


# R program to convert 
# expression to character
  
# Creating an object of expression class
x <- expression(sin(pi / 2))
  
# Class of object
class(x)
  
# Calling deparse() Function
x1 <- deparse(x)
  
# Class of parsed object
class(x1)

輸出:

[1] "expression"
[1] "character"

範例2:


# R program to convert 
# expression to character
  
# Creating an object of expression class
x <- expression(2 ^ 3)
  
# Evaluating the value of object
eval(x)
  
# Calling deparse() Function
x1 <- deparse(x)
  
# Evaluating the value of object
eval(x1)

輸出:

[1] 8
[1] "expression(2^3)"

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert an Expression to a String in R Programming – deparse() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。