Dataframe arange()
usage Clean-up
#1236
Labels
good first issue
Good for newcomers
In Progress
Work on ticket is in progress / ticket is actively being worked
This was identified during review of #1190. There are several instances where
arange()
is being called asarange(0, self._size, 1)
(or similar). Because0
is the default forstart
and1
is the default forstride
, This can be simplified toarange(self._size)
since the defaults will automatically be applied.Files to Update
arkouda/dataframe.py
The text was updated successfully, but these errors were encountered: