简体   繁体   中英

Spark grouped Dataframe details

How can I achieve keys of a grouped spark-dataframe ?

And another question:

What does a pyspark.sql.group.GroupedData object include?

How can I achieve keys of a grouped spark-dataframe?

Without aggregating data and collecting the result it is not possible. It would be easier to just:

df.select(grouping_columns).distinct()

What does a pyspark.sql.group.GroupedData object include?

Just the execution plan:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM