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
tibble() does much less than data.frame(): it never changes the type of the inputs (e.g. it never converts strings to factors!)
This sounds outdated as of R 4.0.0 and might be confusing to users who are not familiar with the old behavior. Albeit one of the biggest confusions around data.frame is no longer true (fortunately), there are many more that could inherit its position in the README.
The text was updated successfully, but these errors were encountered:
lorenzwalthert
changed the title
data.frame and strings as factorsdata.frame and stringsAsFactorsMay 12, 2022
The tibble print method draws inspiration from [data.table](https://rdatatable.gitlab.io/data.table), and [frame](https://github.com/patperry/r-frame). Like `data.table::data.table()`, `tibble()` doesn't coerce strings to factors by default, doesn't change column names, and doesn't use rownames.
From the README:
This sounds outdated as of R 4.0.0 and might be confusing to users who are not familiar with the old behavior. Albeit one of the biggest confusions around
data.frame
is no longer true (fortunately), there are many more that could inherit its position in the README.The text was updated successfully, but these errors were encountered: