mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 12:37:30 +02:00
fix: fixed wrong headers
This commit is contained in:
parent
e55c58bc89
commit
4b7b1be6b7
2 changed files with 6 additions and 6 deletions
4
NEWS.md
4
NEWS.md
|
|
@ -1,6 +1,8 @@
|
||||||
# FreesearchR 26.2.2
|
# FreesearchR 26.2.2
|
||||||
|
|
||||||
Minor addition to the previous update with correct activation of the missingness evaluation button.
|
*FIX* Minor addition to the previous update with correct activation of the missingness evaluation button.
|
||||||
|
|
||||||
|
*FIX* Correct table headers for evaluating missings across groups.
|
||||||
|
|
||||||
# FreesearchR 26.2.1
|
# FreesearchR 26.2.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -192,18 +192,16 @@ data_missings_server <- function(id, data, max_level = 20, ...) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
## Due to reactivity, the table updates too quickly. this mitigates that issue..
|
## Due to reactivity, the table updates too quickly. this mitigates that issue..
|
||||||
|
if (input$missings_method == "predictors") {
|
||||||
|
|
||||||
if (input$missings_var == "predictors") {
|
|
||||||
title <- glue::glue(
|
title <- glue::glue(
|
||||||
i18n$t(
|
i18n$t(
|
||||||
"Missings across variables by the variable **'{input$missings_var}'**"
|
"Missing observations across variables grouped by **'{input$missings_var}'**"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
title <- glue::glue(
|
title <- glue::glue(
|
||||||
i18n$t(
|
i18n$t(
|
||||||
"Missing vs non-missing observations in the variable **'{input$missings_var}'**"
|
"Differences by missing vs non-missing observations in **'{input$missings_var}'**"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue