-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
53 lines (53 loc) · 1.25 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
Package: autotextclassifier
Title: R Package for Automatically Classifying Texts Based on Tidymodels
Version: 0.0.5
Authors@R:
c(person(given = "Jae Yeon",
family = "Kim",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-6533-7910")),
person(given = "Milan",
family = "de Vries",
role = c("aut"),
email = "[email protected]"))
Description: A suite of functions that automatically classifies documents based on a binary category using lasso, random forest, and XGboost algorithms. The package is built on the tidymodels framework.
Maintainer: Jae Yeon Kim <[email protected]>
BugReports: https://github.com/snfagora/autotextclassifier/issues
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Imports:
dials,
dplyr,
forcats,
ggplot2,
glmnet,
glue,
magrittr,
parsnip,
purrr,
ranger,
recipes,
rsample,
stringr,
textdata,
textrecipes,
tidyr,
tune,
workflows,
xgboost,
yardstick,
zeallot
Suggests:
rmarkdown,
knitr,
devtools,
doParallel,
here,
patchwork
VignetteBuilder: knitr
Depends:
R (>= 3.6)