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

select() does not preserve attributes for data frames #5294

Closed
stibu81 opened this issue Jun 2, 2020 · 5 comments
Closed

select() does not preserve attributes for data frames #5294

stibu81 opened this issue Jun 2, 2020 · 5 comments
Labels
bug an unexpected problem or unintended behavior verbs 🏃‍♀️
Milestone

Comments

@stibu81
Copy link

stibu81 commented Jun 2, 2020

According to the documentation, select() should preserve attributes ("Data frame attributes are preserved." in section Value). However, this seems to work only for tibbles, not for data frames. This is an reproducible example:

mtcars_df <- mtcars
attr(mtcars_df, "test") <- TRUE
mtcars_tib <- as_tibble(mtcars_df)
attr(mtcars_df, "test")
attr(mtcars_tib, "test")

attr(dplyr::select(mtcars_df), "test")
attr(dplyr::select(mtcars_tib), "test")

With dplyr 0.8.5, all the four calls of attr() return TRUE as expected. But with dplyr 1.0.0, attr(dplyr::select(mtcars_df), "test") returns NULL.

The result does not change, if some columns are selected.

@lionel-
Copy link
Member

lionel- commented Jun 2, 2020

Right, currently the restoration when selecting columns is performed by [.tbl_df. Maybe we should call dplyr_reconstruct() in dplyr_col_select(), for consistency with other verbs.

@hadley hadley added bug an unexpected problem or unintended behavior verbs 🏃‍♀️ labels Jun 5, 2020
@hadley
Copy link
Member

hadley commented Jun 5, 2020

Yeah, I think we should.

@hadley hadley added this to the 1.1.0 milestone Jun 5, 2020
@morgan121

This comment has been minimized.

@hadley

This comment has been minimized.

@hadley
Copy link
Member

hadley commented Nov 16, 2020

Minimal reprex:

library(dplyr, warn.conflicts = FALSE)

df1 <- structure(data.frame(x = 1), y = 2)
df2 <- structure(tibble(x = 1), y = 2)

attr(select(df1, x), "y")
#> NULL
attr(select(df2, x), "y")
#> [1] 2

Created on 2020-11-16 by the reprex package (v0.3.0.9001)

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 verbs 🏃‍♀️
Projects
None yet
Development

No branches or pull requests

5 participants