How to insert text in frames in fit curve platform with Group and By variables (JMP 18)
Hi all! I want to insert a text in frames in the fit curve platform using a Group and a By variable via JSL (JMP 18).Therefore I tried the following code, but it doesn't work:Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = dt << Fit Curve(Y(:weight), X(:height), Group(:sex), Fit Linear, By(:age));
robj = obj << report;
(robj << XPath(
"(//OutlineBox[text()='Fit Curve']/
...