cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
debraj_guha
Level II

How to modify the heading of the bivariate analysis plot

Hello,

I am trying to create a plot with the script below. When I create the plot using the Analysis tab in JMP, I get the plot as shown in the image named "Bivariate_Fit_Desired.PNG". While I put the same script in JSL, I get the plot as shown as in the image named "Bivariate_Fit_toFix.PNG". The area where I have the issue is circled in the images and the script is below. Thanks in advance.

 

Best

Debraj

 

ns:dt <<Fit Group(

           Bivariate(

                            Y( :THICKNESS_AVG ),

                             X( :DATE_TIME ),

                  Fit Spline( 0.1, Standardized, {Line Color( {213, 72, 87} )} ),

                  Where( :RIE Recipe == 150 ),

                             SendToReport(

                                 Dispatch(

                                          {},

                         "2",

                                         ScaleBox,

                         {Max( 0.575 ), Add Ref Line( LCL_150_M, "Solid", "Black", "", 2 ),

                         Add Ref Line( CL_150_M, "Solid", "Black", "", 2 ),

                         Add Ref Line( UCL_150_M, "Solid", "Black", "", 2 )}

                                   ),

                                   Dispatch(

                                             {},

                           "Bivar Plot",

                                              FrameBox,

                            {Frame Size( 547, 401 ), Marker Size( 6 ),

                             Marker Drawing Mode( "Outlined" ),

                                               Row Legend(

                                                            :Data_Collection_Bin,

                                     Color( 1 ),

                                     Color Theme( "JMP Default" ),

                                     Marker( 0 ),

                                     Marker Theme( "" ),

                                     Continuous Scale( 0 ),

                                     Reverse Scale( 0 ),

                                     Excluded Rows( 0 )

                                                 )}

                                        )

                            )

               ),

 

1 ACCEPTED SOLUTION

Accepted Solutions
KarenC
Super User (Alumni)

Re: How to modify the heading of the bivariate analysis plot

change your "Where(:column = 150)" to "By( :REI Recipe)"....

Run your analysis again by hand and compare the "save script" to the "save by group" script.

View solution in original post

2 REPLIES 2
KarenC
Super User (Alumni)

Re: How to modify the heading of the bivariate analysis plot

change your "Where(:column = 150)" to "By( :REI Recipe)"....

Run your analysis again by hand and compare the "save script" to the "save by group" script.
debraj_guha
Level II

Re: How to modify the heading of the bivariate analysis plot

Thanks.....that did it.