- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Want to know what "<<" means in JSL
Thanks so much!
Drink deep, or taste not the Pierian spring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Want to know what "<<" means in JSL
Created:
Mar 26, 2025 01:12 AM
| Last Modified: Mar 26, 2025 2:35 AM
(76 views)
| Posted in reply to message from timothy_forsyth 03-25-2025
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);
-Jarmo