/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

vctrs.r-lib.org
| | purrr.tidyverse.org
2.8 parsecs away

Travel
| | These functions are variants of map() that iterate over two arguments at a time.
| | readr.tidyverse.org
5.8 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.
| | 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. & ...
| | ddarmon.github.io
26.0 parsecs away

Travel
|