normalizingagents: Normalizing Agents

normalizingagentsR Documentation

Normalizing Agents

Description

Normalizing Agents

Usage

min_max_norm(x)

min_max_norm_df(df)

min_max_norm_percent(x)

min_max_norm_percent_df(df)

norm_z(x)

norm_z_df(df)

decimal_scaling(x)

decimal_scaling_df(df)

log_transformation(x)

roundfluor(x)

Arguments

x

value(s)

df

data frame

Value

A normalized value when applied to a single value or a normalized attribute with values between the normalizing range.

normalized value (0-1)

normalized value (0-1)

normalized value (0-100)

normalized value (0-100)

normalized value (Z = N (0,1))

normalized value (Z = N (0,1))

normalized value

normalized value

log value

rounded value

See Also

Other normfluodbf_utils: fluorthresholdcheck

Examples

## Not run: 
test_df <- as.data.frame(c(seq(40)))
colnames(test_df) <- "test"
test_df_norm <- lapply(test_df[1:ncol(test_df)], min_max_norm)
## End(Not run)

normfluodbf documentation built on Sept. 28, 2024, 1:06 a.m.