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
cyrus_cheung
Level I

How to use JSL for Fit Group with by column?

Not sure what is erroring out in this script using Fit Group in JSL. It still plots the graph as I wanted, however it terminated the script at that point.

In the following script, error marked by /*###*/
Fit Group(
	Bivariate(Y(:A), X(:AAA),
	Bivariate(Y(:A), X(:BBB)),
	Bivariate(Y(:A), X(:CCC)),
	Bivariate(Y(:B), X(:AAA)),
	Bivariate(Y(:B), X(:BBB)),
	Bivariate(Y(:B), X(:CCC)),
	<<{Arrange in Rows(3)},
	By(:Group123) /*###*/
);

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to use JSL for Fit Group with by column?

I assume the issue is that the By needs to be associated with each of the separate Bivariate instances

Fit Group(
	Bivariate(Y(:A), X(:AAA),By(:Group123)),
	Bivariate(Y(:A), X(:BBB),By(:Group123)),
	Bivariate(Y(:A), X(:CCC),By(:Group123)),
	Bivariate(Y(:B), X(:AAA),By(:Group123)),
	Bivariate(Y(:B), X(:BBB),By(:Group123)),
	Bivariate(Y(:B), X(:CCC),By(:Group123)),
	<<{Arrange in Rows(3)}
);
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How to use JSL for Fit Group with by column?

I assume the issue is that the By needs to be associated with each of the separate Bivariate instances

Fit Group(
	Bivariate(Y(:A), X(:AAA),By(:Group123)),
	Bivariate(Y(:A), X(:BBB),By(:Group123)),
	Bivariate(Y(:A), X(:CCC),By(:Group123)),
	Bivariate(Y(:B), X(:AAA),By(:Group123)),
	Bivariate(Y(:B), X(:BBB),By(:Group123)),
	Bivariate(Y(:B), X(:CCC),By(:Group123)),
	<<{Arrange in Rows(3)}
);
Jim
cyrus_cheung
Level I

Re: How to use JSL for Fit Group with by column?

Thanks!

Recommended Articles