auto_filtered_log = variants_filter.apply_auto_filter(log) being applied to Log object returns an error
File "C:\...\lib\site-packages\pm4py\algo\filtering\pandas\variants\variants_filter.py", line 59, in apply_auto_filter variants_df = case_statistics.get_variants_df(df, parameters=parameters) File "C:\...\lib\site-packages\pm4py\statistics\traces\generic\pandas\case_statistics.py", line 197, in get_variants_df new_df = df.groupby(case_id_glue)[activity_key].agg(lambda col: ",".join(pd.Series.to_list(col))).to_frame() AttributeError: 'EventLog' object has no attribute 'groupby''.
I have checked that function is currently defined for dataframes, will it be in the future defined for Log objects as well as it is done with other "apply_auto_filter" functions?
auto_filtered_log = variants_filter.apply_auto_filter(log)
being applied to Log object returns an errorFile "C:\...\lib\site-packages\pm4py\algo\filtering\pandas\variants\variants_filter.py", line 59, in apply_auto_filter variants_df = case_statistics.get_variants_df(df, parameters=parameters) File "C:\...\lib\site-packages\pm4py\statistics\traces\generic\pandas\case_statistics.py", line 197, in get_variants_df new_df = df.groupby(case_id_glue)[activity_key].agg(lambda col: ",".join(pd.Series.to_list(col))).to_frame() AttributeError: 'EventLog' object has no attribute 'groupby'
'. I have checked that function is currently defined for dataframes, will it be in the future defined for Log objects as well as it is done with other "apply_auto_filter" functions?