hi,
I'm trying to create an continuous distribution using the column list store in "collist"
it show below error and the distribution did not come out.
Names Default To Here( 1 );
dt=Open( "C:\2023 Project\Try.jmp" );
//dt = Open( "$SAMPLE_DATA/Blood Pressure.jmp" );
ListofColumnNames2= dt << get column names();
show(ListofColumnNames2);
collist = {};
For( i=3, i <= N Items(ListofColumnNames2), i++,
Insert Into( collist, ListofColumnNames2[i] );
);
show(collist);
dist = dt << Distribution(
Stack( 1 ),
Continuous Distribution(
Column( evallist(collist) ),
Horizontal Layout( 1 ),
Vertical( 0 ),
Process Capability( Use Column Property Specs, Process Capability Analysis )
)
);