Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
lakhoune committed Feb 27, 2024
1 parent 066478a commit 44c504f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discovery/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def bot_statistics(event_log):
if 'user' in event_log.columns:
stats['numberOfUsers'] = event_log['user'].nunique()
else:
users = event_log['REMAKRS'].apply(lambda x: json.loads(x)['user'])
users = event_log['REMARKS'].apply(lambda x: json.loads(x)['user'])
stats['numberOfUsers'] = users.nunique()
stats['averageConversationLength'] = event_log.groupby(
'case:concept:name').size().mean()
Expand Down

0 comments on commit 44c504f

Please sign in to comment.