Getting formula from column in a pretty format
I would like to obtain the formula of each column in a more readable format (also called pretty format). For the example below I will like to obtain "height / weight
". Simply removing ":" will not work as columns can have such character. Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
col = New Column( "Ratio" );
col << Set Formula( :height / :weight );
col << Eval Formula;
...