Thursday 28 September 2017

What Is Infix Operators?

Cited from Data Infix Operators in R

Infix refers to the placement of the arithmetic operator between variables. For example, an infix operation is given by (a+b), whereas prefix and postfix operators are given by (+ab) and (ab+), respectively.

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Cited from the Book "Beginning Data Science in R"

If you want help on an infix operator, you need to quote it, and you do that using backquotes.

?`+`


No comments:

Post a Comment