drop_na() does not keep attributes of columns as shown below. I think it should. thanks ``` ttbl <- tibble(col1 = c(1,2, NA, 2)) attr(ttbl$col1, "attr")<- "A value" ttbl$col1 drop_na(ttbl)$col1 ```