Skip to content

Commit fe26b1c

Browse files
committedOct 13, 2024·
add back knit_print.alpha
1 parent 5604372 commit fe26b1c

File tree

96 files changed

+3222
-1413
lines changed

Some content is hidden

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

96 files changed

+3222
-1413
lines changed
 

‎NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export(ended)
4040
export(expired)
4141
export(has_label)
4242
export(has_labels)
43+
export(knit_print.alpha)
4344
export(label_browser)
4445
export(label_browser_static)
4546
export(likert_from_items)

‎R/label_browser.R

+3-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ label_browser_static <- function(data = NULL, viewer = rstudioapi::viewer) {
6969
"\n", "<br>")
7070
}
7171

72-
DT::datatable(labels,
72+
DT::formatSignif(DT::datatable(labels,
7373
caption = paste(df_name, " columns and labels"),
7474
filter = 'top',
7575
escape = FALSE,
@@ -80,7 +80,8 @@ label_browser_static <- function(data = NULL, viewer = rstudioapi::viewer) {
8080
# dom = 't',
8181
paging = FALSE
8282
)
83-
)
83+
), intersect(names(labels), c("complete_rate",
84+
"mean", "sd")))
8485
}
8586

8687
#' Browse and search variable and value labels

0 commit comments

Comments
 (0)
Please sign in to comment.