V2 Flashcards
More Introduction to R
name two options of control structures
- branching : if, else if, switch
- looping: while, for, repeat
how to code if-statement
if(class(box) == "character"){ right(box) }else{ left(box) }
example:
if(all(x<5)) print - check if all numbers are smaller than 5 in vector
if(any(x<5)) print - check if at leat 1 is smaller than 5
how to code switch-statement
switch(class(box)), logical = left(x), numeric = middle(x), character= right (x) )
how to code else if-statement
code same as if statement as second or third line
how to code for-statement
for(x in 1:10){ box = box -x} - take x elements out of the box
how to code while-statement
box
Comparisons operators (6)
== - equal to != - not equal to < - smaller than > - lager than >= - smaller or equal to >= - larger or equal to
how to use &
& is vectorized, can be used for logical vectors
&& not vectorized, takes the first element from a vector
what happens at combination of if and & , |
- if needs single logical value
- so output from & and | cannot be used directly
how to use pairwise statements
A&B - pairwise AND
A|B pairwise OR
- > can store in a subset
- > can also be used for matrices
use lapply (code)
lapply(X, FUN,…) - repeat a function to each element in a vector or list
na.rm to use if there is NA
use apply (code)
apply(X,Margin, FUN, …) repeat function to each row or column in a matrix
margin = 1 , rows
margin = 2 , columns
margin = c(1,2), rows and columns
what happens with lapply / apply results
- normally give back list
- use unlist function to get vector
how to code a function
define a function with the keyword function
example:
boxwood
function parameter theory: pass-by-value
function parameters get copied into the function, changing them does not alter the state of the variable that was passed
function parameter theory: pass-by-reference
function parameters are references to the variable passed into the function, changing them alters the state of the variable that was passed
function parameter theory: pass-by-promised
function parameters are references to the variables passed into the function, when changing them, a copy is made. this way the state of the variable that was passed is not changed
functions: parameters
- in R function parameters get copied when changed inside a function (pass-by-promise)
- so updating them is not visible from he outside
functions: default parameters
- we can set reasonable default for some variables
whats a variadic function
- a variadic function is a function which accepts a variable number of arguments
- we can use … to specify variadic functions in R
Functions: scope
- intern is not visible from outside
- this is called the scope of the variable
- we can however access variables in our parent scope (is called bad practice but sometimes we have to. Reasons: being lazy, save RAM, plot functions use it to read the environment settings)
Overview brackets
() : used when you call a function, used in control structure statements
[]: specify an index in a vector, matrix or data.frame
[[]]: specify an index in a list
{}: defines blocks of code, is used to surround expressions - what expressions belong to an if statement
- what expression belong to this function
How to work with strings
- strings are enclosed using: “ or ‘
- combine strings using: paste
- print them to screen using: print
- print them to anywhere (screen and file) using: cat
how to escape characters
Quotes: \" and \' New line: \n Tab: \t Backslash: \\ backspace: \b
how to use the seperate elements (code)
cat (“Hello”, “World\n”, sep=”,”) - seperate with comma
Hello, World
runif()
- get a random number
- uniform distribution
- every value has the same chance of being drawn
rnorm()
- get a random number in the gaussian distribution
- value near the mean have a higher chance of being drawn
rpois()
- get a random number in the poisson distribution
- numbers at the low en d of the distribution have a higher chance of occurring
how to get a repeatable randomness
- use set.seed() function
- same set.seed number produces same randomness