DataFrames得order什么时候能支持多列操作

sort(iris, DataFrames.order([:SepalWidth,:PetalLength], by=(s, p) → x+p, rev=true))
是我没找到相应得方案么,DataFrames得order后续能支持这种写法么,还是如果需要这种操作,只能创建新的一列,然后用新的列排序

我以为这么基础的功能应该提供了,翻了下文档居然没找到,刚去 slack 上问了下,目前还真没支持…

You are right - currently we do not have support for this. We track this issue to add it in the future Consider allowing transformations in sort · Issue #2489 · JuliaData/DataFrames.jl · GitHub. For now you can do df[sortperm(your_function(your_columns,...)), :]

:laughing:好吧
但支持单列函数操作,没道理不支持多列呀