complete != combined

This commit is contained in:
Tanushree Tunstall 2022-09-12 14:47:29 +01:00
parent 90a4c464e4
commit 7b1862a23e

View file

@ -143,7 +143,7 @@ makeplot = function(x, # the DataFrame to plot
plot_data = x[x$resampling==resampler,] plot_data = x[x$resampling==resampler,]
y_coord_min = min(plot_data[selection], na.rm=TRUE) y_coord_min = min(plot_data[selection], na.rm=TRUE)
if (y_coord_min >= 0) { if (y_coord_min > 0) {
y_coord_min = 0 y_coord_min = 0
} }
if (display_infobox) { if (display_infobox) {