In attached JMP table I create a simple graph plotting:
- the column "Label" on the x-axis
- the columns "Std Dev(Size of error)" and "Mean(Absolute error)" on the y-axis
(the graph is also included in the attached data table)
Using the last column, MAE, I would like to label only the points from the column "Mean(Absolute error)".
I have successfully labelled graphs in the past as below:
dtSummary:MAE << label(1);
dtSummary << Select All Rows << label(1) << clear select;
Trouble is this puts the same label for both variables plotted on the y-axis but I want for only one, i.e. the column "Mean(Absolute error)".
Does anyone know how to do this? Thanks in advance, Scott.