tkluis
5/19/2019 - 8:26 PM

R If and Then Statements

# Conditional Execution Logic
if (<A condition>){
    # do A
} else if (<B condition> ){
    # do B
} else {
    # otherwise do this
}