3 Matching Annotations
  1. Sep 2022
    1. Faster insights with less code for experienced R users. Exploring a fresh new dataset is exciting. Instead of searching for syntax at Stackoverflow, use all your attention searching for interesting patterns in your data, using just a handful easy to remember functions. Your code is easy to understand - even for non R users.

      EDA tool that quickly generates reports.

  2. Feb 2022
    1. ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.

      ```

      The easiest way to get ggplot2 is to install the whole tidyverse:

      install.packages("tidyverse")

      Alternatively, install just ggplot2:

      install.packages("ggplot2")

      Or the development version from GitHub:

      install.packages("devtools")

      devtools::install_github("tidyverse/ggplot2") ```

  3. Jan 2019