Atharva Khare

Results 3 issues of Atharva Khare

```smalltalk df := DataFrame withRows: #( ('A1' 'B1' 'D1' 'C1') ('A2' 'B2' 'D2' 'C2')) columnNames: #('A' 'B' 'D' 'C'). ds := DataSeries withKeys: #('A' 'B' 'C' 'D') values: #('A3' 'B3'...

bug
Difficulty: Easy

DataFrameInternal currently uses Array2D (Previously it used Matrix https://github.com/PolyMathOrg/DataFrame/issues/44) Is there any specific reason such as speed/functionality for choosing Array2D? Currently, while adding/removing a row, entire dataframe gets re-created. This...

to be discussed
idea

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...

Difficulty: Medium
to be discussed