-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDESCRIPTION
60 lines (60 loc) · 2.11 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Package: IDEAFilter
Type: Package
Version: 0.2.0
Title: Agnostic, Idiomatic Data Filter Module for Shiny
Description: When added to an existing shiny app, users may subset any
developer-chosen R data.frame on the fly. That is, users are empowered to
slice & dice data by applying multiple (order specific) filters using the
AND (&) operator between each, and getting real-time updates on the number
of rows effected/available along the way. Thus, any downstream processes
that leverage this data source (like tables, plots, or statistical procedures)
will re-render after new filters are applied. The shiny module’s user interface has
a 'minimalist' aesthetic so that the focus can be on the data &
other visuals. In addition to returning a reactive (filtered) data.frame,
'IDEAFilter' as also returns 'dplyr' filter statements used to actually slice
the data.
Authors@R: c(
person(
given = "Aaron", family = "Clark",
email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-0123-0970")),
person(
given = "Jeff", family = "Thompson",
email = "[email protected]", role = "aut"),
person(
given = "Doug", family = "Kelkhoff",
email = "[email protected]", role = c("ctb", "cph"),
comment = "Author of shinyDataFilter"),
person(
given = "Maya", family = "Gans",
email = "[email protected]", role = "ctb"),
person(family = "SortableJS contributors", role = "ctb",
comment = "SortableJS library"),
person(given = "Biogen", role = "cph"))
License: MIT + file LICENSE
URL: https://biogen-inc.github.io/IDEAFilter/, https://github.com/Biogen-Inc/IDEAFilter
BugReports: https://github.com/Biogen-Inc/IDEAFilter/issues
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.1
Imports:
crayon,
ggplot2,
pillar (>= 1.5.0),
purrr,
RColorBrewer,
shiny,
shinyTime
Suggests:
dplyr,
knitr,
rmarkdown,
shinytest,
shinytest2,
spelling,
testthat
Language: en-US
VignetteBuilder: knitr
Depends:
R (>= 2.10)