cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
timothy_forsyth
Level III

Want to know what "<<" means in JSL

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 XIII

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 XIII

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

Recommended Articles