| sg_filter_gt_p {sigmajs} | R Documentation |
Filter
Description
Filter nodes and/or edges.
Usage
sg_filter_gt_p(
proxy,
input,
var,
target = c("nodes", "edges", "both"),
name = NULL
)
sg_filter_lt_p(
proxy,
input,
var,
target = c("nodes", "edges", "both"),
name = NULL
)
sg_filter_eq_p(
proxy,
input,
var,
target = c("nodes", "edges", "both"),
name = NULL
)
sg_filter_not_eq_p(
proxy,
input,
var,
target = c("nodes", "edges", "both"),
name = NULL
)
sg_filter_undo_p(proxy, name)
sg_filter_neighbours_p(proxy, node, name = NULL)
Arguments
proxy |
An object of class |
input |
A Shiny input. |
var |
Variable to filter. |
target |
Target of filter, |
name |
Name of the filter, useful to undo the filter later on with |
node |
Node id to filter neighbours. |
Value
The proxy object.
Functions
sg_filter_gt_pFilter greater thanvar.sg_filter_lt_pFilter less thanvar.sg_filter_eq_pFilter equal tovar.sg_filter_not_eq_pFilter not equal tovar.sg_filter_undo_pUndo filters, accepts vector ofnames.
[Package sigmajs version 0.1.5 Index]