-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathREADME.Rmd
72 lines (52 loc) · 1.93 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
output: rmarkdown::github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
message = FALSE,
warning = FALSE,
fig.width = 6,
fig.asp = 0.6,
out.width = "75%",
dpi = 300)
```
# ggblanket <img src="man/figures/logo.png" align="right" width="120" />
<!-- badges: start -->
[](https://CRAN.R-project.org/package=ggblanket)
[](https://r-pkg.org/pkg/ggblanket)
[](https://r-pkg.org/pkg/ggblanket)
[](https://r-pkg.org/pkg/ggblanket)
[](https://r-pkg.org/pkg/ggblanket)
<!-- badges: end -->
## Overview
ggblanket is a package of ggplot2 wrapper functions.
The primary objective is to **simplify ggplot2 visualisation**.
Secondary objectives relate to:
* Design: produce well-designed visualisation
* Alignment: align with ggplot2 and tidyverse
* Scope: cover much of what ggplot2 does.
Computational speed has been traded-off.
## Installation
``` r
install.packages("ggblanket")
```
## Example
```{r, fig.asp=0.6}
library(ggblanket)
library(palmerpenguins)
set_blanket()
penguins |>
gg_histogram(
x = flipper_length_mm,
col = species,
)
```
## Get started
Click [here](https://davidhodge931.github.io/ggblanket/articles/ggblanket.html) to start learning how ggblanket works.
## Thank you
Thanks to the developers of ggplot2, tidyverse and the R ecosystem.
For Dad, always missed (Peter Hodge, 1953-2023).