Skip to content

Commit 84d995d

Browse files
More Tests (#35)
* reset globalvars * clean slate * begin test setup * Re-build README.Rmd * remove formatR add glue for warn * refactor utility functions * add tests for int utility * fix dotvars parsing issue * enable coverage * reorder functions/files * refactor utility functions * add download badge * make n optional in gen funcs * Re-build README.Rmd * update doc * add hedgehog testing back in * adjust call * adjust doc for RCMD * knit documentation * fix doc * more tests * fix issue with dtSim = NULL * Add documentation to Generators * add categories to reference index * fix examples with ..var * adjust doc * remove todos * adjust description * Re-build README.Rmd * style Co-authored-by: GitHub Actions <[email protected]>
1 parent 6ffdc55 commit 84d995d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+3114
-2428
lines changed

.Rbuildignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
^_pkgdown\.yml$
1616
^pkgdown$
1717
^\.lintr$
18-
^simstudy\.code-workspace$
18+
^simstudy\.code-workspace$
19+
^tests/\.lintr$

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ Meta
1515
simstudy.code-workspace
1616
.vscode/
1717
docs
18+
tests/old/

.lintr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
linters: with_defaults(object_name_linter("camelCase"))
1+
linters: with_defaults(object_name_linter("camelCase"), object_usage_linter = NULL)

DESCRIPTION

+19-12
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ Title: Simulation of Study Data
44
Version: 0.1.16.9000
55
Date: 2020-04-01
66
Authors@R: c(person(given = "Keith",
7-
family = "Goldfeld",
8-
role = c("aut","cre"),
9-
email = "[email protected]",
10-
comment = c(ORCID = "0000-0002-0292-8780")))
7+
family = "Goldfeld",
8+
role = c("aut","cre"),
9+
email = "[email protected]",
10+
comment = c(ORCID = "0000-0002-0292-8780")),
11+
person(given = "Jacob",
12+
family = "Wujciak-Jens",
13+
role = "aut",
14+
email = "[email protected]",
15+
comment = c(ORCID = "0000-0002-7281-3989"))
16+
)
1117
Description: Simulates data sets in order to explore modeling
1218
techniques or better understand data generating processes. The user
1319
specifies a set of relationships between covariates, and generates
@@ -18,16 +24,24 @@ Description: Simulates data sets in order to explore modeling
1824
License: GPL-3
1925
URL: https://kgoldfeld.github.io/simstudy, https://github.com/kgoldfeld/simstudy
2026
BugReports: https://github.com/kgoldfeld/simstudy/issues
27+
VignetteBuilder:
28+
knitr
29+
Encoding: UTF-8
30+
LazyData: TRUE
31+
RoxygenNote: 7.1.1
2132
Depends:
2233
R (>= 3.2.2)
2334
Imports:
2435
data.table,
36+
glue,
37+
methods,
2538
mvnfast,
2639
mvtnorm,
2740
Rcpp
41+
LinkingTo:
42+
Rcpp
2843
Suggests:
2944
covr,
30-
formatR,
3145
ggplot2,
3246
grid,
3347
gridExtra,
@@ -39,10 +53,3 @@ Suggests:
3953
splines,
4054
survival,
4155
testthat
42-
LinkingTo:
43-
Rcpp
44-
VignetteBuilder:
45-
knitr
46-
Encoding: UTF-8
47-
LazyData: TRUE
48-
RoxygenNote: 7.1.1

NAMESPACE

+3
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,7 @@ export(viewBasis)
5151
export(viewSplines)
5252
import(data.table)
5353
importFrom(Rcpp,evalCpp)
54+
importFrom(Rcpp,sourceCpp)
55+
importFrom(glue,glue)
56+
useDynLib(simstudy)
5457
useDynLib(simstudy, .registration = TRUE)

0 commit comments

Comments
 (0)