Skip to content

Commit f56b401

Browse files
committed
v.0.8
1 parent 512ac79 commit f56b401

File tree

16 files changed

+3335
-91
lines changed

16 files changed

+3335
-91
lines changed

DESCRIPTION

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: svyTable1
22
Title: Create Survey-Weighted Descriptive Statistics and Diagnostic Tables
3-
Version: 0.7.0
3+
Version: 0.8.0
44
Authors@R: c(person("Ehsan", "Karim",
55
email = "[email protected]",
66
role = c("aut", "cre")),
@@ -23,12 +23,14 @@ Imports:
2323
WeightedROC,
2424
kableExtra,
2525
knitr,
26-
stringr
26+
stringr,
27+
msm,
28+
rlang,
29+
tidyr
2730
Suggests:
2831
rmarkdown,
2932
NHANES,
3033
ggplot2,
31-
tidyr,
3234
mice,
3335
testthat (>= 3.0.0)
3436
VignetteBuilder: knitr

NAMESPACE

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export("%>%")
4+
export(addint)
5+
export(addintlist)
6+
export(inteffects)
7+
export(jointeffects)
48
export(svyAUC)
59
export(svydiag)
610
export(svygof)
@@ -9,8 +13,14 @@ export(svytable1)
913
import(stats)
1014
importFrom(WeightedROC,WeightedAUC)
1115
importFrom(WeightedROC,WeightedROC)
16+
importFrom(dplyr,"%>%")
17+
importFrom(dplyr,across)
18+
importFrom(dplyr,bind_rows)
1219
importFrom(dplyr,case_when)
20+
importFrom(dplyr,if_else)
1321
importFrom(dplyr,mutate)
22+
importFrom(dplyr,relocate)
23+
importFrom(dplyr,rename)
1424
importFrom(dplyr,select)
1525
importFrom(graphics,abline)
1626
importFrom(graphics,plot)
@@ -20,12 +30,18 @@ importFrom(kableExtra,kable_styling)
2030
importFrom(kableExtra,pack_rows)
2131
importFrom(knitr,kable)
2232
importFrom(magrittr,"%>%")
33+
importFrom(msm,deltamethod)
34+
importFrom(rlang,":=")
35+
importFrom(rlang,.data)
2336
importFrom(stats,coef)
2437
importFrom(stats,confint)
2538
importFrom(stats,fitted)
2639
importFrom(stats,model.frame)
2740
importFrom(stats,model.matrix)
41+
importFrom(stats,na.omit)
2842
importFrom(stats,plogis)
43+
importFrom(stats,pnorm)
44+
importFrom(stats,qnorm)
2945
importFrom(stats,quantile)
3046
importFrom(stats,residuals)
3147
importFrom(stats,vcov)
@@ -43,4 +59,6 @@ importFrom(survey,svymean)
4359
importFrom(survey,svytable)
4460
importFrom(survey,svyvar)
4561
importFrom(survey,withReplicates)
62+
importFrom(tibble,as_tibble)
4663
importFrom(tibble,tibble)
64+
importFrom(tidyr,pivot_longer)

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# svyTable1 0.8.0
2+
13
# svyTable1 0.4.0
24

35
## MAJOR IMPROVEMENTS

0 commit comments

Comments
 (0)