You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
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:With dplyr 0.8.5, all the four calls of
attr()
returnTRUE
as expected. But with dplyr 1.0.0,attr(dplyr::select(mtcars_df), "test")
returnsNULL
.The result does not change, if some columns are selected.
The text was updated successfully, but these errors were encountered: