-
Notifications
You must be signed in to change notification settings - Fork 231
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
fix(frontend): added export button on evaluation #2116
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @ashrafchowdury !
I QA'ed the PR. I found this issue:
- When exporting the A/B test results, the data is not exported in the right format
Variant 1,Variant 2,Test set,Results,Both are good,Flag,Created on
app.default v1,app.fggf v2,country-app_testset,0% | 14.29%,0%,14.29%,"15 Oct 24, 00:00"
Here, we need to export in a parsable format, meaning instead of one Results column which has a string delimited by |.
Instead we want two columns for for Variant A the other Variant B and each having the number.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ashrafchowdury
Description
This PR aims to add export data as CSV feature on evaluations.
Related Issue
Closes AGE-1021