Here is an example that shows how to take the complete Means and Std table and create a new data table from it and also and example of how to take a specific column of the stat table and add it to the current data table.
names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
Oneway(
Y( :height ),
X( :sex ),
Quantiles( 1 ),
Means and Std Dev( 1 ),
t Test( 1 ),
Box Plots( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 )
);
theReport = current report();
// Create it own new table
theReport["Means and Std Deviations", TableBox(1)] << make into data table;
// and/or add the data to the current data table
dt << new column( "Mean" );
theMeans = theReport["Means and Std Deviations", NumberColBox(2)] << get;
dt:Mean << set values( theMeans );
Jim