Get Column Reference
Summary: Process of retrieving column references from a data table, storing them in two separate results.
Code:
dtz = Open("data_table.jmp");
result1 = dtz << get column reference();
result2 = dtz << get column reference( [] );
Code Explanation:
- Open data table.
- Get all column references.
- Store column references in result1.
- Get all column references again.
- Store column references in result2.