Open
Description
Code:
x := DataFrame new.
x addRow: #(1 2 3)
Current workaround is:
x := DataFrame withColumnNames: #(1 2 3).
x addRow: #(1 2 3)
This is due to
DataFrame/src/DataFrame/DataFrameInternal.class.st
Lines 100 to 101 in c4a8684
Code:
x := DataFrame new.
x addRow: #(1 2 3)
Current workaround is:
x := DataFrame withColumnNames: #(1 2 3).
x addRow: #(1 2 3)
This is due to
DataFrame/src/DataFrame/DataFrameInternal.class.st
Lines 100 to 101 in c4a8684