Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/VincentGuyader/littleboxes

Rstudio Addin - create boxed title in an Rscript
https://github.com/VincentGuyader/littleboxes

rscript rstudio-addin

Last synced: about 2 months ago
JSON representation

Rstudio Addin - create boxed title in an Rscript

Awesome Lists containing this project

README

        

# littleboxes
RStudio Addin - creates boxed in titles in an Rscript

## Installation

```R
# install.packages("devtools")
devtools::install_github("ThinkR-open/littleboxes")

# If you just want boxes without any tricks using Rstudio outline
devtools::install_github("ThinkRstat/littleboxes",ref="simpleboxe")

```
## Usage

![alt tag](https://raw.githubusercontent.com/ThinkRstat/littleboxes/master/demo.gif)

```R
# write a sentence, place your cursor on the line and go to Addins > Little Boxes

# Part One

1+1
plot(iris)

# Part Two
lm(1~1)

will be turned into:

##%######################################################%##
# #
#### Part One ####
# #
##%######################################################%##

1+1
plot(iris)

##%######################################################%##
# #
#### Part Two ####
# #
##%######################################################%##

lm(1~1)

```
[![Alt text](http://img.youtube.com/vi/yZnx-VbQ2bk/0.jpg)](https://www.youtube.com/watch?v=yZnx-VbQ2bk)