Skip to content

Commit dc2d3d0

Browse files
authored
Merge pull request #22 from NErler/code-cleanup
Code cleanup
2 parents 2eb1ad4 + fb4a064 commit dc2d3d0

Some content is hidden

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

58 files changed

+7000
-4700
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,5 @@ sim_mldata.R
5050

5151
revdep/
5252
^CRAN-SUBMISSION$
53+
^\.vscode$
54+
^[.]?air[.]toml$

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ bash.exe.stackdump
1616
sh.exe.stackdump
1717

1818
revdep
19+
.DS_Store

.lintr

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
linters: linters_with_defaults() # see vignette("lintr")
2+
encoding: "UTF-8"

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"Posit.air-vscode"
4+
]
5+
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"[r]": {
3+
"editor.formatOnSave": true,
4+
"editor.defaultFormatter": "Posit.air-vscode"
5+
},
6+
"[quarto]": {
7+
"editor.formatOnSave": true,
8+
"editor.defaultFormatter": "quarto.quarto"
9+
}
10+
}

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ URL: https://nerler.github.io/JointAI/
1717
License: GPL (>= 2)
1818
BugReports: https://github.com/nerler/JointAI/issues/
1919
LazyData: TRUE
20-
RoxygenNote: 7.3.2
20+
RoxygenNote: 7.3.3
2121
Roxygen: list(old_usage = TRUE, markdown = TRUE)
2222
Imports: rjags, mcmcse, coda, rlang, future, mathjaxr, survival, MASS
2323
SystemRequirements: JAGS (https://mcmc-jags.sourceforge.io/)

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
* `all_vars()`: update of the function; can now handle an unspecified number of
99
input objects and can extract variable names from formulas and character
1010
strings that are valid variable names
11-
11+
* objects provided to the `data` argument are now converted with
12+
`as.data.frame()`, making it possible to provide a `tibble`
13+
* Elements of a list supplied to the `append_data_list` argument will now
14+
overwrite existing elements of the `data_list` with the same name. This
15+
enables a wider range of changes to the automatically generated JAGS model.
1216

1317
--------------------------------------------------------------------------------
1418

0 commit comments

Comments
 (0)