Saving Summary Table as HTML and Picture
I am trying to save the summary table as an HTML and a picture but both scripts do not work. How can I get it to work?jrnl<<save HTML and jrnl<<save picture do not save as I need it to. Any help will be much appreciated. Example: dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt1=dt<< Summary(
Group(:sex),
Mean( :height )
);
dt1<< sort( by( :Name("Mean(height)")),Order(Descending), Replace Table );jrnl=dt...