forked from tidymodels/embed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNAMESPACE
104 lines (103 loc) · 2.84 KB
/
NAMESPACE
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
93
94
95
96
97
98
99
100
101
102
103
104
# Generated by roxygen2: do not edit by hand
S3method(bake,step_discretize_cart)
S3method(bake,step_discretize_xgb)
S3method(bake,step_embed)
S3method(bake,step_lencode_bayes)
S3method(bake,step_lencode_glm)
S3method(bake,step_lencode_mixed)
S3method(bake,step_umap)
S3method(bake,step_woe)
S3method(prep,step_discretize_cart)
S3method(prep,step_discretize_xgb)
S3method(prep,step_embed)
S3method(prep,step_lencode_bayes)
S3method(prep,step_lencode_glm)
S3method(prep,step_lencode_mixed)
S3method(prep,step_umap)
S3method(prep,step_woe)
S3method(print,step_discretize_cart)
S3method(print,step_discretize_xgb)
S3method(print,step_embed)
S3method(print,step_lencode_bayes)
S3method(print,step_lencode_glm)
S3method(print,step_lencode_mixed)
S3method(print,step_umap)
S3method(tidy,step_discretize_cart)
S3method(tidy,step_discretize_xgb)
S3method(tidy,step_embed)
S3method(tidy,step_lencode_bayes)
S3method(tidy,step_lencode_glm)
S3method(tidy,step_lencode_mixed)
S3method(tidy,step_umap)
S3method(tidy,step_woe)
export(add_woe)
export(dictionary)
export(embed_control)
export(step_discretize_cart)
export(step_discretize_xgb)
export(step_embed)
export(step_lencode_bayes)
export(step_lencode_glm)
export(step_lencode_mixed)
export(step_umap)
export(step_woe)
export(tidy)
export(tidy.step_embed)
export(tidy.step_lencode_bayes)
export(tidy.step_lencode_glm)
export(tidy.step_lencode_mixed)
export(tidy.step_umap)
export(tunable.step_discretize_cart)
export(tunable.step_discretize_xgb)
export(tunable.step_embed)
export(tunable.step_umap)
export(tunable.step_woe)
import(recipes)
import(rlang)
importFrom(dplyr,"%>%")
importFrom(dplyr,arrange)
importFrom(dplyr,bind_cols)
importFrom(dplyr,bind_rows)
importFrom(dplyr,contains)
importFrom(dplyr,ends_with)
importFrom(dplyr,filter)
importFrom(dplyr,left_join)
importFrom(dplyr,mutate)
importFrom(dplyr,one_of)
importFrom(dplyr,tibble)
importFrom(generics,tidy)
importFrom(keras,backend)
importFrom(keras,compile)
importFrom(keras,fit)
importFrom(keras,get_layer)
importFrom(keras,keras_model)
importFrom(keras,keras_model_sequential)
importFrom(keras,layer_concatenate)
importFrom(keras,layer_dense)
importFrom(keras,layer_embedding)
importFrom(keras,layer_flatten)
importFrom(keras,layer_input)
importFrom(lme4,glmer)
importFrom(lme4,lmer)
importFrom(purrr,map)
importFrom(rstanarm,stan_glmer)
importFrom(stats,as.formula)
importFrom(stats,binomial)
importFrom(stats,coef)
importFrom(stats,complete.cases)
importFrom(stats,gaussian)
importFrom(stats,glm)
importFrom(stats,model.matrix)
importFrom(stats,na.omit)
importFrom(stats,setNames)
importFrom(tibble,as_tibble)
importFrom(tibble,rownames_to_column)
importFrom(tibble,tibble)
importFrom(tidyr,gather)
importFrom(utils,capture.output)
importFrom(utils,globalVariables)
importFrom(utils,packageVersion)
importFrom(utils,stack)
importFrom(uwot,umap)
importFrom(uwot,umap_transform)
importFrom(withr,with_seed)