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
{{ message }}
This repository was archived by the owner on Aug 15, 2023. It is now read-only.
df = api.aggregate(log_id=log_id, metric="frequency",grouping= "byActivity")
This receives an error like: 400 Client Error: Bad Request for url: http://localhost:4000/api/v2/aggregate-data
This is because values_from= "allEvents" is missing. We should not allow this request to go through and send a warning to the user.
df = api.aggregate(log_id=log_id, metric="frequency",grouping= "byActivity")This receives an error like:
400 Client Error: Bad Request for url: http://localhost:4000/api/v2/aggregate-dataThis is because
values_from= "allEvents"is missing. We should not allow this request to go through and send a warning to the user.