gsimplify | R Documentation |
hyperloop
ObjectSimplifies a hyperloop
object if possible.
gsimplify(ga, exclude = NULL, subset = NULL)
simplify_hyperloop(ga, exclude = NULL, subset = NULL)
simple_hloop(ga, exclude = NULL, subset = NULL)
ga |
list: of a |
exclude |
character or integer: elements to exclude in each list element of |
subset |
indices specifying elements of |
A data frame if possible, otherwise a list.
# calls: t.test(x, -1), t.test(x, 0), t.test(x, 1)
ga <- gapply(t.test, x=I(rnorm(100)), mu=-1:1)
# no simplication since `data.name` and `conf.int` have lengths larger than one
gsimplify(ga)
#' simplification is now possible
gsimplify(ga, exclude=c("conf.int", "data.name"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.