mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀
This commit is contained in:
parent
4cf4bd0499
commit
6d545337de
328 changed files with 12930 additions and 1662 deletions
61
reference/data-correlations.md
Normal file
61
reference/data-correlations.md
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue