-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
53 lines (36 loc) · 1.11 KB
/
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
44
45
46
47
48
49
50
51
52
53
---
output: github_document
---
<a href="https://shaunporwal.com" class="nav-link">← Back to Main Site</a>
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# islet
Islet contains personal R functions. I'm also using this to learn how to create R packages.
## Installation
You can install the development version of islet from [GitHub](https://github.com/) with:
```{r Install Library, eval=FALSE}
# install.packages("devtools")
devtools::install_github("shaunporwal/islet")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r Load Library}
library(islet)
```
```{r example 1}
# Simple Example, Default '&' Border
islet::make_banner(str_to_banner = 'analyze column from dataframe')
# Output Saved to Clipboard, Can Cmd+v or Ctrl+v to directly paste banner
```
```{r example 2}
# New Banner Border Example
islet::make_banner(str_to_banner = 'analyze column from dataframe',
banner_chr = '+')
```