-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
41 lines (41 loc) · 1.49 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
Type: Package
Package: lest
Title: Vectorised Nested if-else Statements Similar to CASE WHEN
in 'SQL'
Version: 1.1.0
Authors@R:
c(person(given = "Stefan",
family = "Fleck",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-3344-9851")),
person(given = "Hadley",
family = "Wickham",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4757-117X")),
person(given = "Romain",
family = "François",
role = "aut",
comment = c(ORCID = "0000-0002-2444-4226")),
person(given = "Lionel",
family = "Henry",
role = "aut"),
person(given = "Kirill",
family = "Müller",
role = "aut",
comment = c(ORCID = "0000-0002-1416-3412")))
Maintainer: Stefan Fleck <[email protected]>
Description: Functions for vectorised conditional recoding of
variables. case_when() enables you to vectorise multiple if and else
statements (like 'CASE WHEN' in 'SQL'). if_else() is a stricter and
more predictable version of ifelse() in 'base' that preserves
attributes. These functions are forked from 'dplyr' with all package
dependencies removed and behave identically to the originals.
License: MIT + file LICENSE
Suggests:
testthat
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.0.1.9000