cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Graph Builder new option: global fit

☑ cool new feature
☑ could help many users!

☑ removes something that feels like a „bug“

☐ nice to have

☐ nobody needs it

 

What inspired this wish list request? 

Via the variables settings in Graphbuilder a user can disable some variables for a specific plot style.
Extremely useful!!

... but it could be even better. At the moment, not ALL variables are listed, e.g. X / Y Group and Wrap are missing.

hogi_0-1717868245667.png

missing: Wrap, X Group, Y Group ?!?!?

 

What is the improvement you would like to see? 

Add checkboxes for the missing variables - to give the user the chance to disable them.

 

Why is this idea important? 

If a user uses Wrap to split a plot into several subplots -  at the moment, there is no possibility to generate a COMMON FIT (with all data points) and display it an all subplots. such a common fit could be used to see how the individual fits deviate from this common fit.

 

Here is a workaround: 

Before splitting the plot into subplots, generate a fit and save the formula to the table. Add the fitted data points and split the plot.

 

With the possibility to disab´ple the Wrap (or X /Y Group) variable for the Linear fit, the final plot could be generated directly with GraphBuilder without a woraround.

 

cool, isn't it?

 

 

 

Names Default to Here(1);

// generate the plot without splitting it
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

	myPlot= Data Table( "Big Class" ) << Graph Builder(
		Size( 582, 401 ),
		Summary Statistic( "Median" ),
		Graph Spacing( 4 ),
		Variables( X( :height ), Y( :weight ) ),
		Elements( Points( X, Y, Legend( 12 ) ), Line Of Fit( X, Y, Legend( 14 ) ) )
	);
	myPlot << Update Element( 1, 1, 2, {Save Formula} );

// save the fit
:"Line of Fit(weight)"n << set name("common fit");

// use it in additional to the data points
myPlot << Add Variable({:common fit , Role("Y"), Position(1)});

// split the plot
myPlot << Add Variable({:sex, Role("wrap")})

 

 

hogi_1-1717868928841.png

 

 

other wishes from hogi_2-1702196401638.png

4 Comments
hogi
Level XIII

In addition, for some variables, there are check boxes, but they don't have an effect -> enable them!

hogi_0-1720514281216.png

 

X=name IS DISABLED, but it's used to generate the plot.

hogi_1-1720514374215.png

 

 

Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Variables(
		X( :sex ),
		X( :name, Position( 1 ) ),
		Y( :weight ),
		Overlay( :sex )
	),
	Elements(
		Points( X( 1 ), Y, Legend( 1 ) )
	)
);
hogi
Level XIII

-

 

SarahGilyard
Staff
Status changed to: Acknowledged

Good suggestion Hogi. I've marked this for inclusion in the next prioritization survey. There are several wishes related to graph builder improvements that we could combine into a single initiative. We will discuss internally. 

hogi
Level XIII

@SarahGilyard ,thanks,  wonderful : )