Day 2, A
Normally the code gets run line by line, in order, top to bottom
There are special commands that allow you change that
Conditional execution, choose which code to run depending on logical conditions
if(<condition>)
else if
else
Loops, repeat a chunk of code several times
repeat
for
while
If the <condition>
evaluates to TRUE
, then something
gets executed, otherwise something else
gets executed.
<condition>
must be length one. No vectors allowed.
This is more useful when the condition inside the if
is a result of some other computation
There does not need to be anything returned from the expression, it could just modify data, make a figure, etc.
if else
There is no limit to the amount of if else
statements. This is equivalent to having if statements repeatedly nested.
switch
: evaluates its first argument, and chooses one of the subsequent arguments by name (unnamed the “default”)cut
: Divides a numeric vector into intervals and produces a factor.&
(logical AND) and |
(OR) have scalar counterparts, called “short-circuit” operators
&&
and ||
evaluate the first argument, and then the second one only if necessary.Common use case:
xor
Exclusive ORisTRUE
and isFALSE
any
and all
for converting logical vectors to a single value, also have na.rm
optionaka, how to not stop evaluation on an error. R has 3 types of exceptions: 1) Errors, 2) Warnings, 3) Messages. Errors stop the flow of execution, all three say something at the console.
Warnings and Messages can be suppressed by wrapping the expressions in suppress(Warhings|Messages)
tryCatch
evaluates an expression and does something with the error that you decide.
ifelse
This is a function, not a statement like if
and else
.
It is vectorized and hence better suited for working with data.
ifelse(<logical vector>, <yes vector>, <no vector>)
. All three vectors should be the same length or recycling happens.
It returns a vector with elements from yes
when TRUE, and elements from no
when FALSE.
A loop repeatedly and sequentially evaluates an expression, i.e.,
A loop will continue forever unless you tell it to stop. You tell it to stop in different ways for different loop expressions
This is the simplest of loops, it will repeat an expression until it encounters break
This will run forever
This will run exactly once
Modify the above to run 5 times
Notice the pattern, repeat an expression until a condition is met.
The condition usually depends on a variable that changes at each iteration, in this case i
, the iterator
while
loops explicitly state the condition at the start:
A for
loop explicitly states the sequence of the iterator at the start. Then the “end condition” is that the loop has reached the end of the sequence.
In this case, it is the most concise. I personally use for
loops more than any other loop.
break
can be used inside any loop to end it. next
can be used to go to the next iteration.
A loop can itself contain a loop, or multiple loops.
You may see people warn you not to use for loops in R, “because they are slow”.
That is partially true, but speed is not the only thing, for loops can be much clearer and more understandable than the alternatives.
But, the slow thing in R is changing the size of an object, so you can avoid that by creating a vector/matrix/array of the correct size to hold the results of the loop: