Custom scales in Graph Builder?
Some analyses require an axis scale that is not available by default in Graph Builder - like Arrhenius plots with Temperature plotted as 1/T [K].
Let's start with the example from the Scripting Index. We want to generate a Log plot manually - and learn from it:
Names Default To Here( 1 );
Open( "$sample_data/big class.jmp" );
gb = Graph Builder(
Variables( X( :height ), Y( :height ) ),
Element...