Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frame.replace() does not work correctly with views for string columns #1549

Closed
st-pasha opened this issue Jan 14, 2019 · 0 comments · Fixed by #1550
Closed

Frame.replace() does not work correctly with views for string columns #1549

st-pasha opened this issue Jan 14, 2019 · 0 comments · Fixed by #1550
Assignees
Labels
bug Any bugs / errors in datatable; however for severe bugs use [segfault] label views Issues that are specific to "view" frames only
Milestone

Comments

@st-pasha
Copy link
Contributor

>>> DT = dt.Frame([str(x) for x in range(10)])[::2, :]
>>> DT.replace('6', 'boo')
>>> DT
     C0
---  --
 0   0 
 1   1 
 2   2 
 3   3 
 4   4 

[5 rows x 1 column]
@st-pasha st-pasha added bug Any bugs / errors in datatable; however for severe bugs use [segfault] label views Issues that are specific to "view" frames only labels Jan 14, 2019
@st-pasha st-pasha self-assigned this Jan 14, 2019
@st-pasha st-pasha added this to the Release 0.8.0 milestone Jan 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Any bugs / errors in datatable; however for severe bugs use [segfault] label views Issues that are specific to "view" frames only
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant