https://github.com/stufield/devel
This "package" is the development package. It contains a loose testing ground of functionality without a home
https://github.com/stufield/devel
Last synced: about 1 year ago
JSON representation
This "package" is the development package. It contains a loose testing ground of functionality without a home
- Host: GitHub
- URL: https://github.com/stufield/devel
- Owner: stufield
- License: other
- Created: 2021-11-03T01:20:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T18:48:58.000Z (over 1 year ago)
- Last Synced: 2025-01-25T06:13:07.457Z (over 1 year ago)
- Language: R
- Size: 323 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{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")
```