Contact: aviboots(AT)netvision.net.il
38,169 questions
49,785 answers
573 users
vec <- c(6, 8, 2, 1, 0, 9, 3, 7) print(vec) vec <- sort(vec) print(vec) # run: # # [1] 6 8 2 1 0 9 3 7 # [1] 0 1 2 3 6 7 8 9 #