Skip to content

Get rid of DataFrame>>removeFirstRow and removeLastRow #72

@olekscode

Description

@olekscode

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

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions