If one wants to display some boxplots together in one plot one has to enter currently the following:
plot CACHE(:,1), CACHE(:,2), CACHE(:,3), ... -set boxplot
Instead the following would be more straightforward:
idx(:,1) = 1,2,3,...;
plot CACHE(:,idx(:,1)) -set boxplot
Add a functionality like this.
Analysis:
This requires some changes, which have to be made only for the special case boxplot. I.e. allowing more than only 6 columns for one plot and evaluating the data ranges for this dimensions.
Implementation:
The functionality was implemented as proposed by the analysis. Implementation tests were passed successfully.
Documentation:
The change was documented in the changes log. Additionally the corresponding item in the plotoptions documentation article were enhanced.
Tests:
The change was tested manually. No deviations detected. Change request implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Diff: