We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GroupBy
Kandy requires their own implementation of the GroupBy interface, however, thanks to:
public fun <T, G> GroupBy<T, G>.toDataFrame(groupedColumnName: String? = null): DataFrame<T> = if (groupedColumnName == null || groupedColumnName == groups.name()) { internal().df } else { internal().df.rename(groups).into(groupedColumnName) } internal fun <T, G> GroupBy<T, G>.internal(): GroupByImpl<T, G> = this as GroupByImpl<T, G>
which assumes every GroupBy is GroupByImpl, this does not work.
GroupByImpl
As far as I can see, internal() is only used to retrieve the underlying df, so it should be easy enough to open this up
internal()
df
The text was updated successfully, but these errors were encountered:
Jolanrensen
Successfully merging a pull request may close this issue.
Kandy requires their own implementation of the
GroupBy
interface, however, thanks to:which assumes every
GroupBy
isGroupByImpl
, this does not work.As far as I can see,
internal()
is only used to retrieve the underlyingdf
, so it should be easy enough to open this upThe text was updated successfully, but these errors were encountered: