Question: Write a function named shift with arguments: x: a vector of any length. right: a length one logical vector with a default value of

Write a function named shift with arguments:  x: a vector of any length. right: a length one logical vector

Write a function named shift with arguments: x: a vector of any length. right: a length one logical vector with a default value of TRUE. The function should return a vector, the same type and length as the the input vector x. The elements should be appropriately shifted to the "right" if right is TRUE, or to the "left" if right is FALSE. If the input vector has length 0 or 1, simply return the input vector. The following shows example usage: letters [1:4] [1] "a" "b" "c" "d" shift (letters [1:4]) [1] "d" "a" "b" "c" shift (letters [1:4], right = FALSE) [1] "b" "c" "d" "a"

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres a funct... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!