-
Notifications
You must be signed in to change notification settings - Fork 6
/
NAMESPACE
143 lines (141 loc) · 3.44 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
export(MI_boot)
export(MI_cv_naive)
export(RR_diff_prop)
export(boot_MI)
export(bw_single)
export(clean_P)
export(coxph_bw)
export(coxph_fw)
export(cv_MI)
export(cv_MI_RR)
export(glm_bw)
export(glm_fw)
export(hoslem_test)
export(km_estimates)
export(km_fit)
export(mean_auc_log)
export(miceImp)
export(mivalext_lr)
export(nri_cox)
export(nri_est)
export(pool_D2)
export(pool_D4)
export(pool_RR)
export(pool_auc)
export(pool_compare_models)
export(pool_intadj)
export(pool_performance)
export(pool_performance_internal)
export(pool_reclassification)
export(psfmi_coxr)
export(psfmi_coxr_bw)
export(psfmi_coxr_fw)
export(psfmi_lm)
export(psfmi_lm_bw)
export(psfmi_lm_fw)
export(psfmi_lr)
export(psfmi_lr_bw)
export(psfmi_lr_fw)
export(psfmi_mm)
export(psfmi_mm_multiparm)
export(psfmi_perform)
export(psfmi_stab)
export(psfmi_validate)
export(risk_coxph)
export(rsq_nagel)
export(rsq_surv)
export(scaled_brier)
export(stab_single)
importFrom(stats, glm)
importFrom(stats, coef)
importFrom(stats, binomial)
importFrom(stats, vcov)
importFrom(stats, formula)
importFrom(stats, as.formula)
importFrom(stats, update.formula)
importFrom(stats, median)
importFrom(stats, model.frame)
importFrom(stats, model.matrix)
importFrom(stats, pf)
importFrom(stats, anova)
importFrom(stats, predict.glm)
importFrom(stats, terms)
importFrom(stats, cov)
importFrom(stats, sd)
importFrom(stats, qt)
importFrom(stats, xtabs)
importFrom(stats, pchisq)
importFrom(stats, gaussian)
importFrom(survival, coxph)
importFrom(survival, Surv)
importFrom(survival, basehaz)
importFrom(survival, survfit)
importFrom(survival, strata)
importFrom(rms, validate)
importFrom(rms, rcs)
importFrom(rms, lrm.fit)
importFrom(stats, logLik)
importFrom(stats, predict)
importFrom(stats, quantile)
importFrom(stats, update)
importFrom(stats, pt)
importFrom(stats, AIC)
importFrom(stats, stepfun)
importFrom(pROC, roc)
importFrom(pROC, var)
importFrom(ggplot2, theme_set)
importFrom(ggplot2, theme_bw)
importFrom(ggplot2, element_blank)
importFrom(ggplot2, stat_smooth)
importFrom(ggplot2, facet_wrap)
importFrom(ggplot2, geom_abline)
importFrom(ggplot2, aes_string)
importFrom(ggplot2, geom_point)
importFrom(ggplot2, ggplot)
importFrom(ggplot2, scale_x_continuous)
importFrom(ggplot2, scale_y_continuous)
importFrom(ggplot2, theme)
importFrom(dplyr, group_by)
importFrom(dplyr, sample_n)
importFrom(dplyr, group_by_all)
importFrom(dplyr, arrange, desc)
importFrom(dplyr, count)
importFrom(dplyr, select)
importFrom(dplyr, bind_rows)
importFrom(dplyr, mutate_if)
importFrom(dplyr, group_split)
importFrom(dplyr, filter)
importFrom(magrittr,"%>%")
importFrom(rsample, bootstraps)
importFrom(rsample, vfold_cv)
importFrom(purrr, is_empty)
importFrom(purrr, map_int)
importFrom(purrr, map)
importFrom(purrr, transpose)
importFrom(purrr, pluck)
importFrom(purrr, is_null)
importFrom(purrr, array_tree)
importFrom(tidyr, nest)
importFrom(tidyr, unnest)
importFrom(tidyr, replace_na)
importFrom(tibble, as_tibble)
importFrom(lme4, lmer)
importFrom(lme4, glmer)
importFrom(lme4, fixef)
importFrom(mice, mice)
importFrom(mice, pool)
importFrom(mice, complete)
importFrom(mice, getfit)
importFrom(mice, getqbar)
importFrom(mice, tidy)
importFrom(mitml, testModels)
importFrom(mitools, MIcombine)
importFrom(mitools, imputationList)
importFrom(stringr, str_split)
importFrom(stringr, str_replace)
importFrom(stringr, str_replace_all)
importFrom(stringr, str_remove_all)
importFrom(cvAUC, cvAUC)
importFrom(cvAUC, ci.cvAUC)
importFrom(car, Anova)
importFrom(stats, approx)