cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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.

Recommended Articles