Chapter 5 Tables
We can create the tables that smmarise useful info.
| Operation | R code | Example Input | Example Output |
|---|---|---|---|
| Square root | sqrt( ) |
sqrt(100) | 10 |
| Absolute value | abs( ) |
abs(-100) | 100 |
| Round | round(x, digits = ) |
round(12.345, 2) | 12.35 |
| Min | min(...) |
min(2.21, 2.22) | 2.21 |
| Max | max(...) |
max(2.21, 2.22) | 2.22 |