Last active
May 7, 2020 08:12
-
-
Save VictorOmondiCDS/fb9b1910702c24bf0ca33cb85457c267 to your computer and use it in GitHub Desktop.
R arithmetic operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Arithmetic | Operator Function | Description | Example | Output | |
---|---|---|---|---|---|
+ | Addition | adds a number to another number | 3+2 | [1] 5 | |
- | Subtraction | subtracts a number from another number | 3 - 2 | [1] 1 | |
* | Multiplication | multiplies number with another number | 3 * 2 | [1] 6 | |
/ | Division | splits a number into equal parts | 3/2 | [1] 1.5 | |
^ | Exponentiation | raising a number to the power of another number | 3 ** 2 | [1] 9 | |
%% | Modulo | returns the remainder of the division | 3 %% 2 | [1] 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment