Operators

%*%

{base}

multiply matrix with its transpose

|

{base}

logical OR

<=

{base}

less than or equal to

=

{base}

assignment operator

/

{base}

division

<

{base}

less than

>=

{base}

greater than or equal to

==

{base}

equal to

!=

{base}

not equal to

%%

{base}

remainder

:

{base}

sequence of integers

|>

{base}

pipe operator (base R)

>

{base}

greater than

<<-

{base}

assignment operator (in functions for global environment)

-

{base}

subtraction

%/%

{base}

quotient

+

{base}

addition

*

{base}

multiplication

<-

{base}

assignment operator

^

{base}

exponent

%in%

{base}

identify if element is in vector

!

{base}

logical NOT

&

{base}

logical AND

The end!