该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


Split() breaks a stacked column into several columns.
Sort by Column Property( "Value Ordering" {"string", "string"} | "Row Order Levels" ),
The following example reverses the previous example for Stack(), returning essentially the original table, except that the height and weight columns now appear in alphabetic order:
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Stack(
Name( "Non-stacked columns" )( Keep( :age, :sex ) ),
Output Table( "Stacked Table" )
dt2 = Data Table( "Stacked Table" );
dt2 << Split(
Output Table( "Split" ) );