In the Tables/Update menu, the user has the possibility to define new formulas o the fly by right clicking into a columns menu and selecting the transformation of choice.
Somehow strange: the newly defined column is not added to the table (nor to the preview - see screenshot).
Could somebody reproduce he behavior - and suggest what I have to change in the menu such that the newly defined column gets added?
Open( "$SAMPLE_DATA/Big Class.jmp" );
tmp = Data Table( "Big Class" ) << Summary(
Group( :name ),
Freq( "None" ),
Weight( "None" )
);
Data Table( "Big Class" ) << Update(
With( tmp ),
Match Columns( :name = :name ),
Add Columns from Update Table(
:N Rows,
Transform Column(
"1/N Rows",
Format( "Fixed Dec", 12, 0 ),
Formula( 1 / :N Rows )
)
)
);