-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
37 lines (37 loc) · 1.44 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
Type: Package
Package: incase
Title: Pipe-Friendly Vector Replacement with Case Statements
Version: 0.3.2.9000
Authors@R: c(
person("Alexander", "Rossell Hayes", , "[email protected]", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0001-9412-0457")),
person("Patrice", "Kiener", , "[email protected]", role = "ctb",
comment = c("Contributed example for fn_case()", ORCID = "0000-0002-0505-9920"))
)
Description: Offers a pipe-friendly alternative to the 'dplyr' functions
case_when() and if_else(), as well as a number of user-friendly
simplifications for common use cases. These functions accept a vector
as an optional first argument, allowing conditional statements to be
built using the 'magrittr' dot operator. The functions also coerce
all outputs to the same type, meaning you no longer have to worry
about using specific typed variants of NA or explicitly declaring
integer outputs, and evaluate outputs somewhat lazily, so you don't
waste time on long operations that won't be used.
License: MIT + file LICENSE
URL: https://pkg.rossellhayes.com/incase/,
https://github.com/rossellhayes/incase
BugReports: https://github.com/rossellhayes/incase/issues
Imports:
backports,
cli,
magrittr,
plu,
rlang
Suggests:
dplyr,
testthat (>= 3.0.0),
tibble
Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3