UMCarpentries / intro-curriculum-r

Custom curriculum for teaching R, the Unix Shell, & Git with an integrated workflow and reproducible research practices.

Home Page:https://umcarpentries.org/intro-curriculum-r/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add table of comparison operators

kelly-sovacool opened this issue · comments

Comparison operators return TRUE or FALSE. There are many useful comparison operators in R:

| operator | meaning |
|----------|---------|
| `==`     | equal   |
| `!=`     | not equal |
| `<`      | less than |
| `>`      | greater than |
| `<=`     | less than or equal to |
| `>=`     | greater than or equal to |

Also need & (and) and | (or).

This should go near where they're first introduced.