An open API service indexing awesome lists of open source software.

https://github.com/sellorm/rclikit


https://github.com/sellorm/rclikit

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# rclikit

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)

The goal of rclikit is to ...

## Installation

You can install the development version of rclikit like so:

``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(rclikit)
## basic example code
```

## Notes

We need to ask the user for permission to write ourside of R-land.

``` r
if(interactive()){askYesNo("Can we write where we like?")}
message("ok, thanks")
```