We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453eccf commit 68c0211Copy full SHA for 68c0211
Sources/SparkConnect/DataFrame.swift
@@ -207,9 +207,9 @@ public actor DataFrame: Sendable {
207
return DataFrame(spark: self.spark, plan: SparkConnectClient.getSort(self.plan.root, cols))
208
}
209
210
- /// <#Description#>
211
- /// - Parameter cols: <#cols description#>
212
- /// - Returns: <#description#>
+ /// Return a new ``DataFrame`` sorted by the specified column(s).
+ /// - Parameter cols: Column names.
+ /// - Returns: A sorted ``DataFrame``
213
public func orderBy(_ cols: String...) -> DataFrame {
214
215
0 commit comments