Skip to content

Commit 916f182

Browse files
committed
reportint
1 parent f56b401 commit 916f182

6 files changed

Lines changed: 729 additions & 18 deletions

File tree

DESCRIPTION

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,42 @@
11
Package: svyTable1
22
Title: Create Survey-Weighted Descriptive Statistics and Diagnostic Tables
3-
Version: 0.8.0
3+
Version: 0.9.0
44
Authors@R: c(person("Ehsan", "Karim",
5-
email = "ehsan.karim@gmail.com",
6-
role = c("aut", "cre")),
5+
email = "ehsan.karim@gmail.com",
6+
role = c("aut", "cre")),
77
person("Esteban", "Valencia",
8-
comment = "Provided feedback on generalizing the svydiag function, tested installation issues and fixed a bug regarding effective sample size calculation.",
9-
role = "ctb"))
10-
Description: A tool to create publication-ready descriptive summary tables
11-
from complex survey data. It also provides a suite of functions to
8+
comment = "Provided feedback on generalizing the svydiag function, tested installation issues and fixed a bug regarding effective sample size calculation.",
9+
role = "ctb"))
10+
Description: A tool to create publication-ready tables from complex
11+
survey data, including descriptive summaries and multi-panel
12+
interaction reports. It also provides a suite of functions to
1213
evaluate survey-weighted regression models, including coefficient
13-
diagnostics, goodness-of-fit tests, and design-correct AUC calculations.
14+
diagnostics, goodness-of-fit tests, and design-correct AUC
15+
calculations.
1416
License: MIT + file LICENSE
1517
Encoding: UTF-8
1618
RoxygenNote: 7.3.3
1719
Imports:
18-
survey,
1920
dplyr,
20-
tibble,
21-
magrittr,
22-
stats,
23-
WeightedROC,
2421
kableExtra,
2522
knitr,
26-
stringr,
23+
magrittr,
2724
msm,
25+
Publish,
2826
rlang,
29-
tidyr
30-
Suggests:
3127
rmarkdown,
32-
NHANES,
28+
rstudioapi,
29+
stats,
30+
stringr,
31+
survey,
32+
tibble,
33+
tidyr,
34+
utils,
35+
WeightedROC
36+
Suggests:
3337
ggplot2,
3438
mice,
39+
NHANES,
3540
testthat (>= 3.0.0)
3641
VignetteBuilder: knitr
3742
Config/testthat/edition: 3

NAMESPACE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,22 @@ export(addint)
55
export(addintlist)
66
export(inteffects)
77
export(jointeffects)
8+
export(reportint)
89
export(svyAUC)
910
export(svydiag)
1011
export(svygof)
1112
export(svypooled)
1213
export(svytable1)
1314
import(stats)
15+
importFrom(Publish,publish)
1416
importFrom(WeightedROC,WeightedAUC)
1517
importFrom(WeightedROC,WeightedROC)
1618
importFrom(dplyr,"%>%")
1719
importFrom(dplyr,across)
1820
importFrom(dplyr,bind_rows)
1921
importFrom(dplyr,case_when)
2022
importFrom(dplyr,if_else)
23+
importFrom(dplyr,left_join)
2124
importFrom(dplyr,mutate)
2225
importFrom(dplyr,relocate)
2326
importFrom(dplyr,rename)
@@ -33,9 +36,14 @@ importFrom(magrittr,"%>%")
3336
importFrom(msm,deltamethod)
3437
importFrom(rlang,":=")
3538
importFrom(rlang,.data)
39+
importFrom(rlang,sym)
40+
importFrom(rmarkdown,render)
41+
importFrom(rstudioapi,isAvailable)
42+
importFrom(rstudioapi,viewer)
3643
importFrom(stats,coef)
3744
importFrom(stats,confint)
3845
importFrom(stats,fitted)
46+
importFrom(stats,formula)
3947
importFrom(stats,model.frame)
4048
importFrom(stats,model.matrix)
4149
importFrom(stats,na.omit)
@@ -44,6 +52,7 @@ importFrom(stats,pnorm)
4452
importFrom(stats,qnorm)
4553
importFrom(stats,quantile)
4654
importFrom(stats,residuals)
55+
importFrom(stats,terms)
4756
importFrom(stats,vcov)
4857
importFrom(stats,weights)
4958
importFrom(stringr,str_extract)
@@ -62,3 +71,5 @@ importFrom(survey,withReplicates)
6271
importFrom(tibble,as_tibble)
6372
importFrom(tibble,tibble)
6473
importFrom(tidyr,pivot_longer)
74+
importFrom(tidyr,pivot_wider)
75+
importFrom(utils,browseURL)

0 commit comments

Comments
 (0)