Operators

|

{base}

logical OR

<-

{base}

assignment operator

<=

{base}

less than or equal to

=

{base}

assignment operator

:

{base}

sequence of integers

*

{base}

multiplication

%in%

{base}

identify if element is in vector

-

{base}

subtraction

/

{base}

division

>

{base}

greater than

&

{base}

logical AND

^

{base}

exponent

|>

{base}

pipe operator (base R)

%*%

{base}

multiply matrix with its transpose

+

{base}

addition

<

{base}

less than

<<-

{base}

assignment operator (in functions for global environment)

::

{base}

export variable from package for use

%/%

{base}

quotient

==

{base}

equal to

!=

{base}

not equal to

!

{base}

logical NOT

>=

{base}

greater than or equal to

%%

{base}

remainder

The end!