R语言中可以使用sort()函数将向量进行升序排列,如果需要降序排列,可以使用sort()函数的参数decreasing = TRUE。以下是示例代码:
sort()
decreasing = TRUE
# 创建一个向量 vec <- c(5, 2, 8, 3, 9) # 将向量降序排列 sorted_vec <- sort(vec, decreasing = TRUE) # 输出结果 print(sorted_vec)
输出结果:
[1] 9 8 5 3 2