2025-02-19 13:17:16 +01:00
% Generated by roxygen2: do not edit by hand
2025-03-13 12:41:50 +01:00
% Please edit documentation in R/correlations-module.R
2025-02-19 13:17:16 +01:00
\name{data-correlations}
\alias{data-correlations}
\alias{data_correlations_ui}
\alias{data_correlations_server}
\title{Data correlations evaluation module}
\usage{
data_correlations_ui(id, ...)
2025-09-11 15:21:04 +02:00
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"),
...
)
2025-02-19 13:17:16 +01:00
}
\arguments{
2025-09-11 15:21:04 +02:00
\item{id}{id}
2025-02-19 13:17:16 +01:00
2025-03-13 12:41:50 +01:00
\item{...}{arguments passed to toastui::datagrid}
2025-02-19 13:17:16 +01:00
\item{data}{data}
2025-09-11 15:21:04 +02:00
\item{include.class}{character vector of classes to include. Default is NULL}
2025-02-19 13:17:16 +01:00
2025-09-11 15:21:04 +02:00
\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}
2025-02-19 13:17:16 +01:00
}
\value{
Shiny ui module
shiny server module
}
\description{
Data correlations evaluation module
}