adding a table on the firts tab of a dashboard
Can i add in the first tab a table ? like the example. Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
// Create a table for the first tab
tableBox = dt << Summary(
Group( :sex ),
Mean( :weight ),
Mean( :height ),
N
);
gb_collector = Tab Box( "Dashboard",
V List Box(
tableBox
)
);
For( i = 1, i <= 20, i++,
// Column box for plot o
...