Scripting Guide > Data Tables > Columns > Compress Selected Columns
发布日期: 04/13/2021

Compress Selected Columns

To minimize the size of a large data table, use the Compress Selected Columns message. Each column is compressed into the most compact form.

dt << Compress Selected Columns( {column name, column name} );

For example, compress the age, sex, height, and weight columns in Big Class.jmp as follows:

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Compress Selected Columns(
{:age, :sex, :height, :weight}
);

For more information about this feature, see 压缩选定列 in Using JMP.

需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).