knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

library(Ipaper)

Ipaper

R-CMD-check codecov License CRAN

Installation

# devtools::install_github("kongdd/Ipaper")
devtools::install_git("https://gitee.com/adv-r/Ipaper")
# or from gz file
install.packages("../Ipaper_0.1.5.9000.tar.gz", repos = NULL, type = "source", dependencies = TRUE)
# $sudo apt-get install libfftw3-dev

FUNCTIONS

rstudio shortcuts addin

| Description | Shortcut | | ------------------------------------------------- | ------------ | | copy lines at the cursor position (sublime style) | Alt+c | | clip lines at the cursor position | Alt+x | | Insert %<>% | Ctrl+Shift+, | | Insert %do% {} | Ctrl+Shift+D | | Insert %in% {} | Ctrl+Shift+I |

Visualization

Parallel functions

Base tools

df <- data.frame(year = 2010, day = 1:2, month = 1, site = "A")
l  <- list(a = df, b = df)
melt_list(l, "id")

l2 <- listk("type1" = l, "type2" = l)
melt_tree(l2, c("type", "id"))

Updates



kongdd/Ipaper documentation built on March 27, 2024, 5:34 a.m.