ā Question about grouping events by a specific property value -> charting last value within each group
So let's say I have some events that happen within a user activity (a Review which holds Suggestions). As a user Accepts or Dismisses suggestions, I want to track an overall Acceptance Rate for each Review. I'm happy do this calculation in frontend state where I have all the data I need.
However, I'm having trouble figuring out how to track "Per Review Acceptance Rate" in Mixpanel. Since a user may close their client at any time, there's no final "Review Finished" event I can rely on. Instead, my preference would be to chart the calculated properties attached to the last "Accept Suggestion" or "Dismiss Suggestion" event for each reviewId.
Is that possible? Is there an alternative way I should be thinking of this?