spillr-package: R package of miscellaneous functions

Description Details Author(s) Examples

Description

Miscellaneous R function created during data cleaning, analysis, and package development.

Details

Package: spillr
Type: Package
Version: 1.0
Date: 2014-12-08
License: GPL-3

In progress...still compiling functions from various projects.

Author(s)

Trey Spiller

Maintainer: Trey Spiller <treyspiller@gmail.com>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# all.equal.mult() compares >=2 objects with R function all.equal()
foo <- c(1:10)
bar <- c(1:10)
foz <- c(1:10)
baz <- letters[1:10]

all.equal.mult(foo, bar) # TRUE
all.equal.mult(foo, baz) # results of all.equal(foo, baz) as one-item list
all.equal.mult(foo, bar, foz) # TRUE
all.equal.mult(foo, bar, baz) # list of pairwise all.equal() comparisons among objects

treysp/spillr documentation built on May 31, 2019, 7:52 p.m.