keep | R Documentation |
Keep or drop symbols
keep(a, yes)
discard(a, no)
a |
Object of class |
yes , no |
Specification of symbols to either keep (yes) or discard (no), coerced to a free object |
Function keep()
needs an explicit return()
to prevent it
from returning invisibly.
The functions are vectorised in the first argument but not the second.
The second argument—the symbols to keep or discard—is formally a
vector of nonnegative integers, but the functions coerce it to a free
object. The symbols kept or dropped are the union of the symbols in
the elements of the vector. Function discard()
was formerly
known as drop()
but this conflicted with base::drop()
.
These functions have nothing in common with APL's take()
and
drop()
.
Robin K. S. Hankin
(x <- rfree(20,5,8))
keep(x,abc(4)) # keep only symbols a,b,c,d
discard(x,as.free('cde')) # drop symbols c,d,e
keep(x,alpha(3)) # keep only abc
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.