Intermediate R for Finance
Lore Dirick
Manager of Data Science Curriculum at Flatiron School
today <- 54.33 yesterday <- 55.24today < yesterday
TRUE
| Format | Description |
|---|---|
| > | Greater than |
| >= | Greater than or equal to |
| < | Less than |
| <= | Less than or equal to |
| == | Equal to |
| != | Not equal to |
| Format | Description |
|---|---|
| > | Greater than |
| >= | Greater than or equal to |
| < | Less than |
| <= | Less than or equal to |
| == | Equal to |
| != | Not equal to |
| Format | Description |
|---|---|
| > | Greater than |
| >= | Greater than or equal to |
| < | Less than |
| <= | Less than or equal to |
| == | Equal to |
| != | Not equal to |
| Format | Description |
|---|---|
| > | Greater than |
| >= | Greater than or equal to |
| < | Less than |
| <= | Less than or equal to |
| == | Equal to |
| != | Not equal to |
| Format | Description |
|---|---|
| > | Greater than |
| >= | Greater than or equal to |
| < | Less than |
| <= | Less than or equal to |
| == | Equal to |
| != | Not equal to |
one <- 1
one == TRUE
TRUE
apple <- c(120.00, 120.08, 119.97, 121.88)
apple < 121
TRUE TRUE TRUE FALSE
Intermediate R for Finance