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

Operation on empty rowwise list column causes "subscript out of bounds" error #5804

Closed
mlell opened this issue Mar 8, 2021 · 0 comments · Fixed by #5805
Closed

Operation on empty rowwise list column causes "subscript out of bounds" error #5804

mlell opened this issue Mar 8, 2021 · 0 comments · Fixed by #5805
Assignees
Labels
bug an unexpected problem or unintended behavior
Milestone

Comments

@mlell
Copy link

mlell commented Mar 8, 2021

If I perform an operation on an empty rowwise data frame, I would expect the result to be an empty data frame as well. Its similar to a for loop being skipped when the vector of indices is empty.

If I do this on a rowwise tibble with zero rows, it behaves as expected:

tibble(a = character(0)) %>%
  rowwise() %>%
  mutate(n = nchar(a)) %>%
  {stopifnot(all.equal(., 
    rowwise(tibble(a = character(0), n = integer(0))))}

This does not work for list columns

tibble(a = list()) %>%
  rowwise() %>% 
  mutate(n = lengths(a))
Error: Problem with `mutate()` input `n`.
x subscript out of bounds
ℹ Input `n` is `lengths(a)`.

I would instead expect a return value like

rowwise(tibble(a = list(), n = integer()))

I tested this issue with dplyr, commit d56404c

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug an unexpected problem or unintended behavior
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants