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

docs: Update comparison between tibble and data.frame #1567

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R/tibble.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#' * `tibble()` is much lazier than [base::data.frame()] in terms of
#' transforming the user's input.
#'
#' - Character vectors are not coerced to factor.
#' - List-columns are expressly anticipated and do not require special tricks.
#' - Column names are not modified.
#' - Inner names in columns are left unchanged.
krlmlr marked this conversation as resolved.
Show resolved Hide resolved
#' - For R < 4.0, [character vectors are not coerced to factor](https://blog.r-project.org/2020/02/16/stringsasfactors/).
#'
#' * `tibble()` builds columns sequentially. When defining a column, you can
#' refer to columns created earlier in the call. Only columns of length one
Expand Down
Loading