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 614f894 commit b5212baCopy full SHA for b5212ba
Sources/SparkConnect/DataFrame.swift
@@ -331,8 +331,8 @@ public actor DataFrame: Sendable {
331
}
332
333
/// Returns a new Dataset by skipping the first `n` rows.
334
- /// - Parameter n: Number of records to skip.
335
- /// - Returns: A subset of the records
+ /// - Parameter n: Number of rows to skip.
+ /// - Returns: A subset of the rows
336
public func offset(_ n: Int32) -> DataFrame {
337
return DataFrame(spark: self.spark, plan: SparkConnectClient.getOffset(self.plan.root, n))
338
0 commit comments