Closed maropu closed 8 years ago
This pr is to remove weird groupby clauses in the spark module. In the current version, voted_avg() is used like;
groupby
voted_avg()
df.select(...).groupby.voted_avg()
This pr changes this in a Spark way.
df.select(...).groupBy.voted_avg()
Coverage increased (+0.005%) to 34.559% when pulling 82adf34c50c1fe1ba670ad81e417a8107c6a2c96 on maropu:BrushupHivemallAggregate into 9f9dbd2a0fb70b58b99aa7f438c4c151059fb93b on myui:master.
LGTM. Merged. Thanks.
This pr is to remove weird
groupby
clauses in the spark module. In the current version,voted_avg()
is used like;This pr changes this in a Spark way.