/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

ggplot2.tidyverse.org
| | datascienceworkshops.com
4.1 parsecs away

Travel
| | Blog article by Jeroen Janssens. Dec 13, 2019. 6 min read. Because ggplot2 is the de-facto package for creating high-quality data visualizations in R, and has been for a long time, there exists many excellent resources for learning ggplot2, including: the ggplot2 website, a two-page cheat sheet (PDF), Stack Overflow, and books such as ggplot2: Elegant Graphics for Data Analysis and R Graphics Cookbook: Practical Recipes for Visualizing Data. A ggplot2 cheat sheet (PDF) Two days ago, I published...
| | purrr.tidyverse.org
4.3 parsecs away

Travel
| | These functions are variants of map() that iterate over two arguments at a time.
| | tibble.tidyverse.org
3.6 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....
| | www.inner-product.com
26.9 parsecs away

Travel
| The core premise of functional programming, in my opinion, is that local reasoning and composition make for better code. Here I discuss what these terms mean and the benefits they bring.