Explore >> Select a destination


You are here

vctrs.r-lib.org
| | dplyr.tidyverse.org
1.3 parsecs away

Travel
| | Select (and optionally rename) variables in a data frame, using a concise mini-language that makes it easy to refer to variables based on their name (e.g. a:f selects all columns from a on the left to f on the right) or type (e.g. where(is.numeric) selects all numeric columns). Overview of selection features Tidyverse selections implement a dialect of R where operators make it easy to select variables: : for selecting a range of consecutive variables. ! for taking the complement of a set of variables. & ...
| | roxygen2.r-lib.org
5.1 parsecs away

Travel
| | The basics of roxygen2 tags and how to use them for documenting functions.
| | tibble.tidyverse.org
2.4 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....
| | jdevuyst.blogspot.com
32.7 parsecs away

Travel
| Most programmers who have dabbled in Clojure are probably familiar with the threading macros -> and ->>. For readers, who aren't. Here's wha...