Functions: Changing Values of a Vector Flashcards
1
Q
changing values of a vector
A
a <- rep(1, 10)
a[1:5] <- 9
a
##[1] 9 9 9 9 9 1 1 1 1 1
this changed the first 5 items of vector “a” to 9s, when we originally assigned them as 10s
2
Q
change vectors using logical operators
A
x is a vector of numbers that should be from 1 to 10
x <- c(5, -5, 7, 4, 11, 5, -2)
x[x < 1] <- 1
x[x > 10] <- 10
x
##[1] 5 1 7 4 10 5 1
3
Q
A