4.1 Arithmetic operators
Use the R console as a calculator!
Operator | Function |
---|---|
+ | addition |
- | subtraction |
/ | division |
* | multiplication |
^ or ** | exponential |
In the R console:
10 - 2
## [1] 8
Hit Enter/Return for R to interpret the command.