Explore >> Select a destination


You are here

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

Travel
| | These functions are variants of map() that iterate over two arguments at a time.
| | dplyr.tidyverse.org
9.0 parsecs away

Travel
| | Bind any number of data frames by row, making a longer result. This is similar to do.call(rbind, dfs), but the output will contain all columns that appear in any of the inputs.
| | tibble.tidyverse.org
7.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....
| | zevross.com
150.8 parsecs away

Travel
| One of the most powerful aspects of the R plotting package ggplot2 is the ease with which you can create multi-panel plots. With a single function you can split a single plot into many related plot...