Column() vs As Column() vs datable:column vs dt:As name("column")
JSL has several ways to refer to columns. Let's open a data table first. Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Bands data.jmp" );
Now we create a table script that has something like this.dt = current data table();
print(dt:timestamp == Column(dt, "timestamp"));
// 0
print(Column(dt, "timestamp")==As Column(dt, "timestamp"));
//0
In automated scripts (for example, a graph), when a...