Consider adding a parameter to nest aggregated columns: aggregate(under: String?)
Open
enhancement
- Dominant language
- Kotlin
- Stars
- 1.1k
- Forks
- 83
- Avg merge
- 4d 12h
- Merged PRs (30d)
- 30
Description
```
df.groupBy { key }.aggregate {
1 into "col"
}
```
schema:
```
key
col
```
```
df.groupBy { key }.aggregate(under = "statistics") {
1 into "col"
}
```
schema:
```
key
statistics:
col
```
Make sure it's consistent across other aggregate overloads (if makes sense)
Contributor guide
Assessment
This issue has not been assessed yet.