-
Notifications
You must be signed in to change notification settings - Fork 71
Functions inline #1123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functions inline #1123
Conversation
# Conflicts: # core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/max.kt # core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/min.kt # core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/group.kt
Outdated
Show resolved
Hide resolved
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/describe.kt
Outdated
Show resolved
Hide resolved
So, now also closes #820. |
* __`.`__[**`into`**][GroupClause.into]**`(`**`groupName: `[`String`][String]**`)`** | ||
* | ||
* {@include [Indent]} | ||
* __`.`__[**`into`**][GroupClause.into]**` { `**`groupNameExpression: `[`ColumnsSelector`][ColumnsSelector]**` } `** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not right, it's a different kind of function. First of all, it's not ColumnsSelector
as that would allow selecting multiple columns. Second, it provides the original column (with path) as argument. Finally, you're allowed to return either a String
or a column reference. It may be best to extract the definition for groupNameExpression
to the top and explain the arguments and return types a bit more exact.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
group
/ungroup
#820.