Skip to content

Commit b1e6996

Browse files
committed
fixed pivot.md
1 parent cedece2 commit b1e6996

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/StardustDocs/topics/pivot.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ df.pivot { "city" then "name"["firstName"] }
9191
## pivot + groupBy
9292

9393
To create matrix table that is expanded both horizontally and vertically, apply [`groupBy`](groupBy.md) transformation passing the columns for vertical grouping.
94-
Reversed order of [`pivot`](pivot.md) and [`groupBy`](groupBy.md) will produce the same result.
94+
Reversed order of `pivot` and [`groupBy`](groupBy.md) will produce the same result.
9595

9696
<!---FUN pivotGroupBy-->
9797
<tabs>
@@ -302,8 +302,6 @@ df.pivot("city").aggregate(separate = true) {
302302
</tab></tabs>
303303
<!---END-->
304304

305-
<dataFrame src="pivotSeparate.html"/>
306-
307305
By default, any aggregation function will result in `null` value for those matrix cells, where intersection of column and row keys produced an empty data group.
308306
You can specify default value for any aggregation by `default` infix function. This value will replace all `null` results of aggregation function over non-empty data groups as well.
309307
To use one default value for all aggregation functions, use `default()` before aggregation.

0 commit comments

Comments
 (0)