Skip to content

Commit 660a30c

Browse files
committed
Deploying to gh-pages from @ b0feb5b 🚀
1 parent 23cb025 commit 660a30c

23 files changed

Lines changed: 457 additions & 48 deletions

articles/Building_Specification_Readers.html

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/Building_Specification_Readers.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -497,9 +497,9 @@ head(codelist)
497497
Now we have all the tables we need we can make the metacore object
498498

499499
``` r
500-
metacore(
501-
ds_spec, ds_vars, var_spec, value_spec,
502-
derivation, codelist
500+
metacore(ds_spec, ds_vars, var_spec, value_spec,
501+
derivation, codelist,
502+
verbose = "message"
503503
)
504504
#> Warning: `core` from the `ds_vars` table only contains missing values.
505505
#> Warning: `supp_flag` from the `ds_vars` table only contains missing
@@ -590,8 +590,6 @@ metacore(
590590
#> ✔ Metadata successfully imported
591591
#> ℹ To use the Metacore object with metatools package, first subset a dataset
592592
#> using `metacore::select_dataset()`
593-
#>
594-
#>
595593
#> ── Metacore object contains metadata for 4 datasets ────────────────────────────
596594
#>
597595
#> → ADDS (Disposition Analysis)

articles/Example.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/Example.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ subset <- test %>% select_dataset("DM")
9292
#> Warning: `idvar` from the `supp` table only contains missing values.
9393
#> Warning: `qeval` from the `supp` table only contains missing values.
9494
#> ✔ DM dataset successfully selected
95-
#>
9695
subset$ds_spec
9796
#> # A tibble: 1 × 3
9897
#> dataset structure label

pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pkgdown_sha: ~
44
articles:
55
Building_Specification_Readers: Building_Specification_Readers.html
66
Example: Example.html
7-
last_built: 2026-01-19T14:05Z
7+
last_built: 2026-01-20T12:22Z
88
urls:
99
reference: https://atorus-research.github.io/metacore/reference
1010
article: https://atorus-research.github.io/metacore/articles

reference/define_to_metacore.html

Lines changed: 23 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/define_to_metacore.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DataDef/Metacore object.
66
## Usage
77

88
``` r
9-
define_to_metacore(path, quiet = FALSE)
9+
define_to_metacore(path, quiet = deprecated(), verbose = "message")
1010
```
1111

1212
## Arguments
@@ -17,8 +17,31 @@ define_to_metacore(path, quiet = FALSE)
1717

1818
- quiet:
1919

20-
Option to quietly load in; when `TRUE`, messages and warnings are
21-
suppressed, but errors are still raised.
20+
**\[superseded\]** Option to quietly load in, this will suppress
21+
warnings, but not errors. Expects either `TRUE` or `FALSE`. Default
22+
behaviour is `FALSE`.
23+
24+
- verbose:
25+
26+
A character string specifying the desired verbosity level. Must be one
27+
of:
28+
29+
"message"
30+
31+
: (default) Messages and warnings are handled normally.
32+
33+
"warn"
34+
35+
: Messages are suppressed, but warnings are allowed.
36+
37+
"collapse"
38+
39+
: Warnings are collapsed into a single message indicating the number
40+
of suppressed warnings.
41+
42+
"silent"
43+
44+
: Both messages and warnings are suppressed.
2245

2346
## Value
2447

Lines changed: 21 additions & 0 deletions
Loading
Lines changed: 21 additions & 0 deletions
Loading
Lines changed: 29 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)