Code: ```smalltalk x := DataFrame new. x addRow: #(1 2 3) ``` Current workaround is: ```smalltalk x := DataFrame withColumnNames: #(1 2 3). x addRow: #(1 2 3) ``` This is due to https://github.com/PolyMathOrg/DataFrame/blob/c4a86848c2d7e5d215a2f880af453f87aca5644f/src/DataFrame/DataFrameInternal.class.st#L100-L101