-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
28 lines (28 loc) · 1.2 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
Package: tidytrees
Title: Convert Regression/Classification Trees Into Tidy Tibbles
Version: 0.2.3
Authors@R:
person(given = "Angelo",
family = "D'Ambrosio",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-2045-5155"))
Description: Regression and classification trees (e.g. from packages like `partykit` or `rpart`) are a very powerful set of statistical learning algorithms.
Nevertheless each tree package has its own way of representing and storing the trees, usually as a nested recursive list with attributes. This makes it very hard to interact with them.
This package provides an interface to convert tree objects from various packages into a "tidy" data frame, with a row for each node showing its defining set of rules and its characteristics.
License: MIT + file LICENSE
URL: https://github.com/bakaburg1/tidytrees
BugReports: https://github.com/bakaburg1/tidytrees/issues
Imports:
dplyr (>= 1.0.2),
stringr (>= 1.4.0),
magrittr (>= 2.0.1)
Suggests:
partykit,
rpart,
testthat (>= 3.0.0)
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Config/testthat/edition: 3