BoxChart goes below 0 although min value is > 0
See original GitHub issueMWE:
final BoxChart chart = new BoxChartBuilder().build();
chart.addSeries("seriesName", List.of(1_000, 5_000, 60_000));
new SwingWrapper(chart).displayChart();
Creates the following chart:
As can be seen in the code example, the min value is 1,000, but the boxplot goes below 0.
Is this a config issue or a bug?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Box chart (box plot) - MATLAB boxchart - MathWorks
This MATLAB function creates a box chart, or box plot, for each column of the matrix ydata. ... and the minimum and maximum...
Read more >Box Plots | Introduction to Statistics - Lumen Learning
A box plot is constructed from five values: the minimum value, the first quartile, the median, the third quartile, and the maximum value....
Read more >Exploring ggplot2 boxplots - Defining limits and adjusting style
Identifying boxplot limits and styles in ggplot2. ... y-axis labels need to be shown at 0 and at the upper scale, Add breaks...
Read more >2.5: Box Plots - Statistics LibreTexts
A box plot is constructed from five values: the minimum value, the first quartile, ... Two box plots over a number line from...
Read more >is it correct that a boxplot is missing a whisker? - Cross Validated
The minimum observed value is 1. ... But the whisker is of zero length, between 1 and 1, and necessarily hard to see....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@beatngu13 I have found the problem and I will fix it.
Thanks for the quick fix! 🙏