mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run
47 lines
1.2 KiB
R
47 lines
1.2 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/correlations-module.R
|
|
\name{data-correlations}
|
|
\alias{data-correlations}
|
|
\alias{data_correlations_ui}
|
|
\alias{data_correlations_server}
|
|
\title{Data correlations evaluation module}
|
|
\usage{
|
|
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{
|
|
\item{id}{id}
|
|
|
|
\item{...}{arguments passed to toastui::datagrid}
|
|
|
|
\item{data}{data}
|
|
|
|
\item{include.class}{character vector of classes to include. Default is NULL}
|
|
|
|
\item{cutoff}{numeric}
|
|
|
|
\item{warning_str}{Character string. Exposed to allow dynamic translations}
|
|
|
|
\item{warning_no_str}{Character string. Exposed to allow dynamic translations}
|
|
|
|
\item{and_strCharacter}{string. Exposed to allow dynamic translations}
|
|
}
|
|
\value{
|
|
Shiny ui module
|
|
|
|
shiny server module
|
|
}
|
|
\description{
|
|
Data correlations evaluation module
|
|
}
|