This function plots the USSL diagram for the given data frame.
plot_DoneenL(
df,
tc_column,
PI_column,
label_column = NULL,
grp_column = NULL,
convert_units = FALSE
)A ggplot object representing the USSL diagram. #'@examples df <- data.frame(tc = c(80, 65, 70), PI = c(30, 65, 150), Color = c("red", "green", "blue")) plot_DoneenL(df, tc_column = "tc", PI_column = "PI", label_column = NULL, grp_column = NULL, convert_units = FALSE)
Data frame containing the necessary columns.
Column name for total concentration (tc).
Column name for PI (optional).
Column name for labels (optional).
Column name for grouping (optional).
Logical, whether to convert units.