本文介绍了按字母顺序排列行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的数据看起来像,
A B C D
B C A D
X Y M Z
O M L P
如何对行进行排序以获得类似的内容
How can I sort the rows to get something like
A B C D
A B C D
M X Y Z
L M O P
谢谢,
推荐答案
t(apply(DF, 1, sort))
t()
函数是必需的,因为使用 apply
系列函数的行操作会以列优先顺序返回结果.
The t()
function is necessary because row operations with the apply
family of functions returns the results in column-major order.
这篇关于按字母顺序排列行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!