Explore >> Select a destination


You are here

readr.tidyverse.org
| | tibble.tidyverse.org
1.7 parsecs away

Travel
| | as_tibble() turns an existing object, such as a data frame or matrix, into a so-called tibble, a data frame with class tbl_df. This is in contrast with tibble(), which builds a tibble from individual columns. as_tibble() is to tibble() as base::as.data.frame() is to base::data.frame(). as_tibble() is an S3 generic, with methods for: data.frame: Thin wrapper around the list method that implements tibble's treatment of rownames. matrix, poly, ts, table Default: Other inputs are first coerced with base::as....
| | vctrs.r-lib.org
5.8 parsecs away

Travel
| | vec_as_names() takes a character vector of names and repairs it according to the repair argument. It is the r-lib and tidyverse equivalent of base::make.names(). vctrs deals with a few levels of name repair: minimal names exist. The names attribute is not NULL. The name of an unnamed element is "" and never NA. For instance, vec_as_names() always returns minimal names and data frames created by the tibble package have names that are, at least, minimal. unique names are minimal, have no duplicates, and ca...
| | recipes.tidymodels.org
7.7 parsecs away

Travel
| | step_regex() creates a specification of a recipe step that will create a new dummy variable based on a regular expression.
| | lukehansford.me
24.6 parsecs away

Travel
|