-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
48 lines (34 loc) · 1.04 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
---
output: github_document
---
<!-- badges: start -->
[![Travis build status](https://travis-ci.org/karawoo/ggbarf.svg?branch=master)](https://travis-ci.org/karawoo/ggbarf)
<!-- badges: end -->
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ggbarf
A sickeningly awesome geom.
Thanks to Claus Wilke for writing
[ggtextures](https://github.com/clauswilke/ggtextures) and thus allowing me to
write this silly package with approximately zero effort.
## Installation
```{r install, eval = FALSE}
devtools::install_github("karawoo/ggbarf")
```
## Example
```{r example}
library("ggbarf")
set.seed(123)
dat <- data.frame(x = sample(letters[1:3], 6, replace = TRUE))
ggplot(dat, aes(x)) +
geom_barf()
```
The barf emoji image by [Twitter, Inc. and other contributors](https://twemoji.twitter.com/)
is licensed under [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/).