Hi,
What does "<<" signify in JMP scripts? I'm using JMP 17
// Get the rows associated with the current excursion label excursion_rows = dt << Get Rows Where(dt:"Excursion Label"n == excursionLabels[i]);
Go to Solution
it's a message which is sent to an object.
dt is a variable which represents a data table.
The message "get rows where" is sent to this object.
The return value [matrix of rows] is stored in the variable excursion_rows.
View solution in original post
Thanks so much!
Scripting Guide is content to quickly go through (no need to read everything, but take a look what it contains), Scripting Guide > Introduction to Writing JSL Scripts > JSL Terminology .
Edit:
<< is same as Send()
Names Default To Here(1); dt = Open("$SAMPLE_DATA/Big Class.jmp"); biv1 = dt << Bivariate(Y(:weight), X(:height)); biv1 << Fit line; biv2 = Send(dt, Bivariate(Y(:weight), X(:height))); Send(biv2, Fit Line);