当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R SparkR orderBy用法及代码示例


说明:

定义 WindowSpec 中的排序列。

用法:

orderBy(x, col, ...)

## S4 method for signature 'WindowSpec,character'
orderBy(x, col, ...)

## S4 method for signature 'WindowSpec,Column'
orderBy(x, col, ...)

参数:

  • x 一个窗口规范
  • col 表示排序列的字符或列
  • ... 额外的排序字段

返回:

一个窗口规范。

注意:

orderBy(WindowSpec, character) 自 2.0.0 起

orderBy(WindowSpec, Column) 自 2.0.0 起

例子:

orderBy(ws, "col1", "col2")
  orderBy(ws, df$col1, df$col2)

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 Ordering Columns in a WindowSpec。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。