https://github.com/sellorm/rclikit
  
  
     
    https://github.com/sellorm/rclikit
  
        Last synced: about 2 months ago 
        JSON representation
    
- Host: GitHub
 - URL: https://github.com/sellorm/rclikit
 - Owner: sellorm
 - License: mit
 - Created: 2021-12-11T14:58:07.000Z (almost 4 years ago)
 - Default Branch: main
 - Last Pushed: 2021-12-11T15:00:32.000Z (almost 4 years ago)
 - Last Synced: 2025-01-05T12:12:34.390Z (10 months ago)
 - Language: R
 - Size: 28.3 KB
 - Stars: 1
 - Watchers: 3
 - Forks: 0
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.Rmd
 - License: LICENSE
 
 
Awesome Lists containing this project
- jimsghstars - sellorm/rclikit - (R)
 
README
          ---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```
# rclikit
[](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")
```