Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀

This commit is contained in:
agdamsbo 2025-11-19 13:25:44 +00:00
commit 6d545337de
328 changed files with 12930 additions and 1662 deletions

View file

@ -0,0 +1,61 @@
# Data correlations evaluation module
Data correlations evaluation module
## Usage
``` r
data_correlations_ui(id, ...)
data_correlations_server(
id,
data,
include.class = NULL,
cutoff = 0.7,
warning_str =
i18n$t("The following variable pairs are highly correlated: {sentence_paste(.x,and_str)}.\nConsider excluding one {more}from the dataset to ensure variables are independent."),
warning_no_str = i18n$t("No variables have a correlation measure above the threshold."),
and_str = i18n$t("and"),
...
)
```
## Arguments
- id:
id
- ...:
arguments passed to toastui::datagrid
- data:
data
- include.class:
character vector of classes to include. Default is NULL
- cutoff:
numeric
- warning_str:
Character string. Exposed to allow dynamic translations
- warning_no_str:
Character string. Exposed to allow dynamic translations
- and_strCharacter:
string. Exposed to allow dynamic translations
## Value
Shiny ui module
shiny server module