Choice Operators (Making Choices)
Create the following variables.
w <- 10.2
x <- 1.3
y <- 2.8
z <- 17.5
colors <- c("red", "blue", "green")
masses <- c(45.2, 36.1, 27.8, 81.6, 42.4)
dna1 <- "attattaggaccaca"
dna2 <- "attattaggaacaca"
Use them to print whether or not the following statements are TRUE
or FALSE
.
w
is greater than 10"green"
is incolors
x
is greater thany
- Each value in
masses
is greater than 40. - 2 *
x
+ 0.2 is equal toy
dna1
is the same asdna2
dna1
is not the same asdna2
w
is greater thanx
, ory
is greater thanz
x
timesw
is between 13.2 and 13.5- Each mass in
masses
is between 30 and 50.