Explore >> Select a destination


You are here

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

Travel
| | read_csv() and read_tsv() are special cases of the more general read_delim(). They're useful for reading the most common types of flat file data, comma separated values and tab separated values, respectively. read_csv2() uses ; for the field separator and , for the decimal point. This format is common in some European countries.
| | yardstick.tidymodels.org
3.4 parsecs away

Travel
| | Compute the logarithmic loss of a classification model.
| | vctrs.r-lib.org
2.4 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...
| | www.jumpingrivers.com
26.9 parsecs away

Travel
| A new R release (v 4.1.0) is due for release on 18th May 2021. This version brings in a few exciting features, such as anonymous functions and the native pipe. Here, we summarise these and other notable changes.