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
we want to group_by before we calculate metrics, not after. We could possible add an option to do either, but see odds_positive and standardized_mean where the values are very different depending on which order they are calculated in.
The text was updated successfully, but these errors were encountered:
See odds_positive and standardized_mean metrics, we group_by first because we need an intermediate metric that must be calculated per group (mean, std etc.). Otherwise on line 196 of plot.py we end up grouping after the metric is computed. This may return the same value as grouping before we calculate the metric for most metrics (check that this is true).
we want to group_by before we calculate metrics, not after. We could possible add an option to do either, but see odds_positive and standardized_mean where the values are very different depending on which order they are calculated in.
The text was updated successfully, but these errors were encountered: