library(rlist)
library(pipeR)

url <- "http://renkun.me/rlist-tutorial/data/people.json"
people <- list.load(url)
people %>>%
  list.filter(Expertise$R >= 1 & Expertise$Python >= 1) %>>%
  list.class(Interests) %>>%
  list.sort(-length(.)) %>>%
  list.take(3) %>>%
  list.map(. %>>% list.table(Age))
mat <- "example32.mat"
alist <- readMatfile(mat, verbose = FALSE)

alist %>>%
  list.take(1)    # show first member of the list

library(rlist)

mat <- "example32.mat"
alist <- readMatfile(mat, verbose = FALSE)

str(alist)
list.map(alist, .name)
list.select(alist, "btcell")


AlfonsoRReyes/martinezEDA documentation built on May 5, 2019, 4:54 a.m.