Skip to contents

← Back to Main Site

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 with:

# install.packages("devtools")
devtools::install_github("shaunporwal/islet")

Example

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


# Simple Example, Default '&' Border
islet::make_banner(str_to_banner = 'analyze column from dataframe')
#> #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#> #&&  analyze column from dataframe  &&
#> #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
# Output Saved to Clipboard, Can Cmd+v or Ctrl+v to directly paste banner

# New Banner Border Example
islet::make_banner(str_to_banner = 'analyze column from dataframe',
                   banner_chr = '+')
#> #+++++++++++++++++++++++++++++++++++++
#> #++  analyze column from dataframe  ++
#> #+++++++++++++++++++++++++++++++++++++