Describe the enhancement requested
Currently, the display for arrow.tabular.RecordBatch and arrow.tabular.Table are not very MATLAB-like. Something like the following would be better:
>> t = table([1; 2; 3], ["A"; "B"; "C"], [false; true; false], VariableNames=["A", "B", "C"]);
>> T = arrow.table(T)
T =
Arrow Table with Schema:
A: Float64 | B: String | C: Boolean
Sample data row:
1 | "A" | false
Component(s)
MATLAB
Describe the enhancement requested
Currently, the display for
arrow.tabular.RecordBatchandarrow.tabular.Tableare not very MATLAB-like. Something like the following would be better:Component(s)
MATLAB