Comment agréger plusieurs colonnes dans Pyspark
df.groupBy("year", "sex").agg(avg("percent"), count("*"))
macarrony00
df.groupBy("year", "sex").agg(avg("percent"), count("*"))