DataFrame has the following two methods:
dataFrame removeFirstRow.
dataFrame removeLastRow.
They are not used by any other method. And they may encourage users to push rows to DataFrame iteratively, which is not recommended.
These methods are just the syntactic sugar for
dataFrame removeRowAt: 1.
dataFrame removeRowAt: dataFrame numberOfRows.
In short, there is no good use case, so we should remove those methods and the corresponding tests
DataFrame has the following two methods:
They are not used by any other method. And they may encourage users to push rows to DataFrame iteratively, which is not recommended.
These methods are just the syntactic sugar for
In short, there is no good use case, so we should remove those methods and the corresponding tests