Unfortunately this broke autoscaling of the x-axis when outliers are enabled, for example: reset $DATA << EOD 4 3 3 EOD set autoscale x set autoscale y plot $DATA with boxplot Will result in 'x range is invalid'. This is a WIP fix I'm testing: diff --git a/src/plot2d.c b/src/plot2d.c index aaf4604b8..3208ee7dd 100644 --- a/src/plot2d.c +++ b/src/plot2d.c @@ -1620,11 +1620,10 @@ boxplot_range_fiddling(struct curve_points *plot) /* If outliers were processed, that has taken care of autoscaling on y....
Unfortunately this broke autoscaling of the x-axis when outliers are enabled, for example: reset $DATA << EOD 4 3 3 EOD set autoscale x set autoscale y plot $DATA with boxplot Will result in 'x range is invalid'. This is a WIP fix I'm testing: diff --git a/src/plot2d.c b/src/plot2d.c index aaf4604b8..3208ee7dd 100644 --- a/src/plot2d.c +++ b/src/plot2d.c @@ -1620,11 +1620,10 @@ boxplot_range_fiddling(struct curve_points *plot) /* If outliers were processed, that has taken care of autoscaling on y....