-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not require extra copy of dimensional goals aggregated data when evaluating without dimensions #74
Comments
@ondraz Hi Ondro, I think doing this might be tricky because the dataframe would then need to contain all possible combinations of |
If we just aggregate (sum) these 4 lines of agg. goal data,
we get exactly what we already have in the extra two lines with no dim values:
so:
There's probably some argument we did it this way where we require those extra two lines with empty dim data but I don't recall it. |
You're right that it works in this case but I don't think it would work in general.
|
Also looking at the
For example, the third row contains all I was just testing that the goal selection works correctly and didn't think about the specific values. |
E.g. when evaluating aggregated data of
test-mutli-dimension
experiment intest_multi_dimension
, we require to have another copy of aggregated data without dimensional columns see here.It would be nice just to "group by" dimensional data without the need to have extra aggregated data without dimensions in agg goals dataframe.
current data:
data format requested in this issue:
The text was updated successfully, but these errors were encountered: