You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I was going to upgrade to a newer version since I was using 0.4, however, you stopped returning words, weekday hour columns in get_df method. I was wondering why is there such a case.
0.5.1
100%|█████████████████████████████████| 8340/8340 [00:00<00:00, 14199.79it/s]
28.12.2024 16:49:47 INFO Finished parsing raw messages.
Index(['timestamp', 'author', 'message'], dtype='object')
0.5.0
100%|█████████████████████████████████| 8340/8340 [00:00<00:00, 14126.80it/s]
28.12.2024 16:50:47 INFO Finished parsing raw messages.
Index(['timestamp', 'author', 'message', 'weekday', 'hour', 'words',
'letters'],
dtype='object')
The text was updated successfully, but these errors were encountered:
Hey @koftezz, we decided to remove these aggregations from the default calculation as they can be inferred from the message field later (see commit cbd31ba). This way, the dataframe is leaner.
You can simply use this polars snippet to bring them back:
Hey, I was going to upgrade to a newer version since I was using 0.4, however, you stopped returning words, weekday hour columns in get_df method. I was wondering why is there such a case.
0.5.1
100%|█████████████████████████████████| 8340/8340 [00:00<00:00, 14199.79it/s]
28.12.2024 16:49:47 INFO Finished parsing raw messages.
Index(['timestamp', 'author', 'message'], dtype='object')
0.5.0
100%|█████████████████████████████████| 8340/8340 [00:00<00:00, 14126.80it/s]
28.12.2024 16:50:47 INFO Finished parsing raw messages.
Index(['timestamp', 'author', 'message', 'weekday', 'hour', 'words',
'letters'],
dtype='object')
The text was updated successfully, but these errors were encountered: