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
How do we create a tibble with a .rows column ? how do we create a data frame with a stringsAsFactors column ?
Since they should be rare (if the constructors are well designed) that's probably ok to just fall back to structure() for those.
We need in general a fall back system for corrupted objects and structure() should be the default and last fallback
The text was updated successfully, but these errors were encountered:
This select = is interesting, it's a bit like tidy selection, we can could compress things using col1:col2 or -col1, but that's a lot of work for corner cases unless we find this idiom useful in more places.
We had this issue for #104
How do we create a tibble with a
.rows
column ? how do we create a data frame with astringsAsFactors
column ?Since they should be rare (if the constructors are well designed) that's probably ok to just fall back to
structure()
for those.We need in general a fall back system for corrupted objects and
structure()
should be the default and last fallbackThe text was updated successfully, but these errors were encountered: