@@ -735,15 +735,15 @@ public actor DataFrame: Sendable {
735735
736736 /// Groups the ``DataFrame`` using the specified columns, so we can run aggregation on them.
737737 /// - Parameter cols: Grouping column names.
738- /// - Returns:A ``GroupData ``.
738+ /// - Returns:A ``GroupedData ``.
739739 public func groupBy( _ cols: String ... ) -> GroupedData {
740740 return GroupedData ( self , GroupType . groupby, cols)
741741 }
742742
743743 /// Create a multi-dimensional rollup for the current Dataset using the specified columns, so we
744744 /// can run aggregation on them.
745745 /// - Parameter cols: Grouping column names.
746- /// - Returns:A ``GroupData ``.
746+ /// - Returns:A ``GroupedData ``.
747747 public func rollup( _ cols: String ... ) -> GroupedData {
748748 return GroupedData ( self , GroupType . rollup, cols)
749749 }
@@ -752,7 +752,7 @@ public actor DataFrame: Sendable {
752752 /// can run aggregation on them. See [[RelationalGroupedDataset]] for all the available aggregate
753753 /// functions.
754754 /// - Parameter cols: Grouping column names.
755- /// - Returns:A ``GroupData ``.
755+ /// - Returns:A ``GroupedData ``.
756756 public func cube( _ cols: String ... ) -> GroupedData {
757757 return GroupedData ( self , GroupType . cube, cols)
758758 }
0 commit comments