mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
render
This commit is contained in:
parent
c28a3d0a6d
commit
fcf422bc4b
16 changed files with 64 additions and 50 deletions
|
|
@ -1 +1 @@
|
|||
app_version <- function()'26.3.4'
|
||||
app_version <- function()'26.3.5'
|
||||
|
|
|
|||
|
|
@ -378,7 +378,7 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) {
|
|||
rlang::exec(cut_var, !!!parameters)
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(paste("We encountered the following error creating the new factor:", err), type = "err")
|
||||
showNotification(paste("We encountered the following error creating the new factor:", err), type = "error")
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
hosted_version <- function()'v26.3.4-260324'
|
||||
hosted_version <- function()'v26.3.5-260330'
|
||||
|
|
|
|||
|
|
@ -353,7 +353,7 @@ import_file_server <- function(id,
|
|||
# showNotification(warn, type = "warning")
|
||||
# },
|
||||
error = function(err) {
|
||||
showNotification(err, type = "err")
|
||||
showNotification(err, type = "error")
|
||||
})
|
||||
})
|
||||
|
||||
|
|
@ -370,7 +370,7 @@ import_file_server <- function(id,
|
|||
minBodyHeight = 250
|
||||
)
|
||||
}, error = function(err) {
|
||||
showNotification(err, type = "err")
|
||||
showNotification(err, type = "error")
|
||||
})
|
||||
})
|
||||
|
||||
|
|
@ -485,7 +485,7 @@ import_xls <- function(file, sheet, skip, na.strings) {
|
|||
# showNotification(paste0(warn), type = "warning")
|
||||
# },
|
||||
error = function(err) {
|
||||
showNotification(paste0(err), type = "err")
|
||||
showNotification(paste0(err), type = "error")
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -513,7 +513,7 @@ import_ods <- function(file, sheet, skip, na.strings) {
|
|||
# showNotification(paste0(warn), type = "warning")
|
||||
# },
|
||||
error = function(err) {
|
||||
showNotification(paste0(err), type = "err")
|
||||
?showNotification(paste0(err), type = "error")
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ data_missings_server <- function(id, data, max_level = 20, ...) {
|
|||
out <- do.call(compare_missings, modifyList(parameters, list(data = df_tbl)))
|
||||
})
|
||||
}, error = function(err) {
|
||||
showNotification(paste0("Error: ", err), type = "err")
|
||||
showNotification(paste0("Error: ", err), type = "error")
|
||||
})
|
||||
|
||||
if (is.null(input$missings_var) ||
|
||||
|
|
|
|||
|
|
@ -416,7 +416,7 @@ regression_server <- function(id,
|
|||
rv$list$regression$models <- model_lists
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "err")
|
||||
showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "error")
|
||||
}
|
||||
)
|
||||
}
|
||||
|
|
@ -481,7 +481,7 @@ regression_server <- function(id,
|
|||
showNotification(paste0(warn), type = "warning")
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "err")
|
||||
showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "error")
|
||||
}
|
||||
)
|
||||
}
|
||||
|
|
@ -559,7 +559,7 @@ regression_server <- function(id,
|
|||
gg_theme_shiny()
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(paste0(err), type = "err")
|
||||
showNotification(paste0(err), type = "error")
|
||||
}
|
||||
)
|
||||
})
|
||||
|
|
@ -619,7 +619,7 @@ regression_server <- function(id,
|
|||
# showNotification(paste0(warn), type = "warning")
|
||||
# },
|
||||
error = function(err) {
|
||||
showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "err")
|
||||
showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "error")
|
||||
}
|
||||
)
|
||||
}
|
||||
|
|
@ -690,7 +690,7 @@ regression_server <- function(id,
|
|||
out <- patchwork::wrap_plots(ls, ncol = if (length(ls) == 1) 1 else 2)
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(err, type = "err")
|
||||
showNotification(err, type = "error")
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
|||
BIN
R/sysdata.rda
BIN
R/sysdata.rda
Binary file not shown.
|
|
@ -245,7 +245,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
|
|||
"We encountered the following error creating the new factor:",
|
||||
err
|
||||
),
|
||||
type = "err")
|
||||
type = "error")
|
||||
})
|
||||
|
||||
# browser()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue