undoEsQuery: Undo previous filter queries on a HCABrowser object

Description Usage Arguments Value Examples

Description

Undo previous filter queries on a HCABrowser object

Usage

1
2
## S4 method for signature 'HCABrowser'
undoEsQuery(x, n = 1L)

Arguments

x

A HCABrowser object

n

integer(1) the number of filter queries to undo

Value

A HCABrowser object with n fewer queries

Examples

1
2
3
4
5
6
x <- HCABrowser()
x <- x %>% filter(organ.text == brain)
x <- x %>% filter(organ.text == heart)
x <- x %>% filter(organ.text != brain)
#x <- x %>% undoEsquery(n = 2)
x

HCABrowser documentation built on Nov. 8, 2020, 7:24 p.m.