-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
47 lines (32 loc) · 985 Bytes
/
Copy pathREADME.Rmd
File metadata and controls
47 lines (32 loc) · 985 Bytes
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# scrap
The scrap package is a collection of useful R functions and code snippets.
These are pieces I either wrote or (most likely) I _discovered_ on StackOverflow and that I found useful
in multiple occasions (> 3) in my personal or professional projects.
## Installation
You can install scrap from github with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("espinielli/scrap")
```
## Building the documentation
### Development
In order to build the relevant `pkgdown` web pages while developing,
execute the following code:
```{r, eval=FALSE}
# How to build the pakgdown from behind proxied Internet
library(withr)
library(pkgdown)
with_options(list(pkgdown.internet = FALSE),
build_site())
```