Scripting Guide > Data Tables > Advanced Data Table Scripting > Select Columns in a Data Table
발행일 : 03/10/2025

Select Columns in a Data Table

To select one or more columns, send the Select Columns message to the data table.

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
clist = {:Height, :Weight};
dt << Select Columns( clist );

To select all columns, send the Select Columns message with the All argument to the data table.

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Columns( all );
더 많은 정보를 원하십니까? 질문이 있습니까? JMP 사용자 커뮤니티에서 답변 받기 (community.jmp.com).