-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
59 lines (37 loc) · 1.07 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
---
output: 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-",
out.width = "100%"
)
```
# hurwitzLab
<!-- badges: start -->
<!-- badges: end -->
## What's here?
* Colors
* Several pre-defined palettes
* Scaling functions for implementation in `ggplot2`
## Installation
You can install hurwitzLab with:
``` r
devtools::install_github("hurwitzlab/hurwitzLab")
```
However, I would suggest installing with
``` r
devtools::install_github("hurwitzlab/hurwitzLab", build_vignettes = TRUE)
```
This will build and make the vignettes available to you, which are very helpful for learning how to use this package. The drawback is that you may need to install other packages to make it work.
You can then access the vignettes with
``` r
vignette("hurwitzLab")
```
If the package is installed without the `build_vignettes = TRUE` option, the vignette can be built with
``` r
devtools::build_vignettes("hurwitzLab")
```