The Range class seems to view the table as an array of rows. It has the method getDataTable
which returns an opaque DataTable. Lost in this seems to be how to select a column as an array. Even an Nx1 range, i.e. just a column, comes in the form [ [1], [2], [3], ...] instead of flat.
Is selecting a column really so suboptimal that it's that hard to do? I'm mostly hardcoding data so I can just rotate it if it is an optimization, just seems odd.