-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
45 lines (27 loc) · 911 Bytes
/
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
---
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-"
)
```
# The `devel` set of functions
## Overview
This "package" is the development package. Do not attempt to load it as you
would a typical package. It contains a loose testing ground of functionality
that, if deemed sufficiently useful, will eventually be migrated into an
appropriate package.
----------------
## Installation
You cannot currently install the `devel` library from the command line, as it
is not a package *per se*. The simplest way to obtain the functionality it
contains is to load it using the `RStudio` `devtools::load_all()` shortcut.
```{r load}
options(width = 110L)
devtools::load_all() # all objects, even non-exported, are accessible
ls("package:devel")
```