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


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