-
Notifications
You must be signed in to change notification settings - Fork 131
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
[OPIK-239] [UX improvements] Add charts of experiment table #601
Conversation
[OPIK-223] [UX improvements] Add grouping by dataset in experiment table
90ae0e2
to
0487c5d
Compare
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.
Some improvements for next PR:
type="natural" | ||
key={line} | ||
isAnimationActive={false} | ||
dataKey={(x) => x.scores[line] || undefined} |
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.
Why we don't display the 0
data points? Not sure what we're trying to achieve with this || undefined
here
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.
It was some testing code that I forgot to delete, thanks for poining me.
if (isUndefined(experimentsData)) { | ||
experimentsData = experimentsCache.current[dataset.id] ?? { | ||
content: [], | ||
total: 0, | ||
}; | ||
} else { | ||
experimentsCache.current[dataset.id] = experimentsData; | ||
} |
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.
Nice cache layer :)
Details
OPIK-239 [UX improvements] Add charts of experiment table
OPIK-223 [UX improvements] Add grouping by dataset in experiment table
Issues
Resolves #
Testing
Documentation