cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Want to know what "<<" means in JSL

timothy_forsyth
Level III

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]);
Drink deep, or taste not the Pierian spring
1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XII


Re: Want to know what "<<" means in JSL

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

3 REPLIES 3
hogi
Level XII


Re: Want to know what "<<" means in JSL

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.

timothy_forsyth
Level III


Re: Want to know what "<<" means in JSL

Thanks so much!

 

Drink deep, or taste not the Pierian spring
jthi
Super User


Re: Want to know what "<<" means in JSL

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()

jthi_0-1742981636457.png

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);

 

-Jarmo