knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

Travis-CI Build Status

Overview

Installation

Install noti using homebrew on macOS. Other platform installation guides see noti.

brew install noti
install.packages("devtools")
devtools::install_github("uribo/roracle")

Usage

library(roracle)
# run r code with notice_status()
notice_status(head(iris))

# Using magrittr pipeline
head(iris) %>% notice_status()
library(ggplot2)
ggplot(iris, aes(Sepal.Length, Petal.Width)) +
  geom_point() %>%
  notice_status(paste(remoji::emoji("art"), "Finished", remoji::emoji("beer")))

library(magick)
image_read("/Users/uri/Dropbox/Documents/icons/そうむ.jpg") %>% 
  image_scale("460x460") %>% 
  image_annotate("Kokoro soumu ni...", 
                 size = 40, 
                 gravity = "northwest",
                 color = "magenta") %>% 
  notice_status("心そうむに、の用意ができました。")


uribo/roracle documentation built on May 3, 2019, 2:37 p.m.