-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathDESCRIPTION
92 lines (92 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Package: data.tree
Type: Package
Title: General Purpose Hierarchical Data Structure
Version: 1.1.0
Date: 2023-11-11
Authors@R: c(
person(
"Russ", "Hyde",
role = c("ctb"),
comment = "improve dependencies"
),
person(
"Chris", "Hammill",
role = c("ctb"),
comment = "improve getting"
),
person(
"Facundo", "Munoz",
role = c("ctb"),
comment = "improve list conversion"
),
person(
"Markus", "Wamser"
, role = c("ctb")
, comment = "fixed some typos"
),
person(
"Pierre", "Formont"
, role = c("ctb")
, comment = "additional features"
),
person(
"Kent", "Russel"
, role = c("ctb")
, comment = "documentation"
),
person(
"Noam", "Ross"
, role = c("ctb")
, comment = "fixes"
),
person(
"Duncan", "Garmonsway"
, role = c("ctb")
, comment = "fixes"
),
person(
"Christoph", "Glur"
, role = c("aut", "cre")
, comment = "R interface"
, email = "[email protected]"
)
)
VignetteBuilder:
knitr,
rmarkdown
Imports:
R6,
stringi,
methods
Suggests:
Formula,
graphics,
testthat,
knitr,
rmarkdown,
ape,
yaml,
networkD3,
jsonlite,
treemap,
party,
partykit,
doParallel,
foreach,
htmlwidgets,
DiagrammeR (>= 1.0.0),
mockery,
rpart
Enhances:
igraph
Description: Create tree structures from hierarchical data, and traverse the
tree in various orders. Aggregate, cumulate, print, plot, convert to and from
data.frame and more. Useful for decision trees, machine learning, finance,
conversion from and to JSON, and many other applications.
License: GPL (>= 2)
URL: https://github.com/gluc/data.tree
BugReports: https://github.com/gluc/data.tree/issues
Depends:
R (>= 3.5)
RoxygenNote: 7.2.3
Encoding: UTF-8