-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
44 lines (44 loc) · 1.52 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
Package: R6P
Type: Package
Title: Design Patterns in R
URL: https://tidylab.github.io/R6P/, https://github.com/tidylab/R6P
BugReports: https://github.com/tidylab/R6P/issues
Version: 0.2.2
Date: 2021-08-01
Authors@R: c(
person("Harel", "Lustiger", email = "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2953-9598")),
person("Tidylab", role = c("cph", "fnd"))
)
Maintainer: Harel Lustiger <[email protected]>
Description: Build robust and maintainable software with object-oriented design
patterns in R. Design patterns abstract and present in neat, well-defined
components and interfaces the experience of many software designers and
architects over many years of solving similar problems. These are solutions
that have withstood the test of time with respect to re-usability,
flexibility, and maintainability. 'R6P' provides abstract base classes with
examples for a few known design patterns. The patterns were selected by
their applicability to analytic projects in R. Using these patterns in R
projects have proven effective in dealing with the complexity that
data-driven applications possess.
License: MIT + file LICENSE
Encoding: UTF-8
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE, r6 = TRUE)
Language: en-GB
Depends:
R (>= 3.5)
Suggests:
testthat,
DBI,
RSQLite,
ggplot2
Imports:
collections,
dplyr,
purrr,
stringr,
R6,
tibble,
tidyr
Config/testthat/edition: 3