Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Ex 3: Create a script that given a numeric vector x with a length 3, will print out the elements in order from high to low.
- x <- c(3,7,1)
- desc.numbers <- sort(x, decreasing = T)
- print(desc.numbers)
Add Comment
Please, Sign In to add comment