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.

JMP Wish List

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

how can I set preference to link profilers

I find that when I am viewing my model with both the Profiler and the Contour Profiler that I usually choose option to Link Profilers. I've run Get Platform Preferences() in the Log, but it seems there is no option to set "Link Profilers" as preferred/default behavior. If there is a reason that users are not allowed to set this preference either via GUI or via JSL, what is it?

2 Comments
martindemel
Staff

Though I like your request, there is a workaround you can use until this might get into the product:

 

Run a jmpStart.jsl script when opening JMP (https://www.jmp.com/support/help/14/run-a-script-at-start-up.shtml) where you open a table, use the profiler in the graph menu and set the "Link Profiler" Property. This property can only be set for the profilers itself not within a platform it seems. The scripting index shows an example for Link Profilers.

The startup script could be like follows:

Names Default To Here( 1 );
dt = New Table( "LinkProfilerDummyTable",
	Invisible,Add Rows( 3 ),
	New Column( "X1",Numeric,"Continuous",Format( "Best", 12 ),
		Set Values( [1, 2, 3] )),
	New Column( "X2",Numeric,"Continuous",Format( "Best", 12 ),
		Set Values([0.41860535973683, 0.5376118759159, 0.944170434493571])),
	New Column( "Y",Numeric,"Continuous",Format( "Best", 12 ),
		Formula( :X1 + :X2 ))
);
obj = dt << Profiler(
	Y( :Y ),
	Profiler(1, Term Value(
			age( 14.5, Lock( 0 ), Show( 1 ) ),
			height( 61.25, Lock( 0 ), Show( 1 ) )
		)),
	Expand
);

obj << Link Profilers( 1 );
Close( dt, NoSave );

Once set, this setting is used until you deselect it. Of course you could also add this script to your menu using View -> Customize -> Menu & Toolbars adding a very own menu item. Or creating an add-in to have it in th e add-in menu.

 

 

However, I agree on adding Link Profiler to the platform properties would be nice.

Ryan_Gilmore
Community Manager
Status changed to: Archived
We are archiving this request. If this is still important please comment with additional details and we will reopen. Thank you!