-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
[Charts] Add: errors bands in graphs #1433
[Charts] Add: errors bands in graphs #1433
Conversation
|
||
unifiedX.forEach((x) => { | ||
plotlySeries.x.push(normalizeValue(x)); | ||
plotlySeries.y.push(normalizeValue(yValues[x] || null)); | ||
if (eValues[x]) { |
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.
This will be false in case of eValues[x]
has a flase-y value, like 0... better check if it's defined.
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.
👍 fixed
any news on this PR :) ? |
Merged. Thanks! And sorry for the delay. |
Thanks :) 👍
|
Adding error bands to graphs and fix bugs in visualization (see original pull request #1430)