Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

expression function in R

# R program to create an expression
  
# Calling expression() Function
x <- expression(2 ^ 3)
x
  
# Printing value of the expression
eval(x)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #expression #function #R
ADD COMMENT
Topic
Name
6+1 =