Strange object returned using sparklyr

Jeff1
Contributor II

Community

I'm running a sparklyr "group_by" function and the function returns the following info:

# group by event_type

acled_grp_tbl <- acled_tbl %>%

 group_by("event_type") %>%

 summary(count = n())

                  Length Class      Mode      

src                 1     src_spark  list      

ops                4     op_group_by list      

sdf_cache_state    2     -none-     environment

spark_dataframe   1     -none-     function  

schema_cache_state 2     -none-     environment

schema             1     -none-     function

Not what I expected and have no idea what it is telling me. Other than my group_by isn't working. Any ideas.

Jeff