plot_DoneenH | R Documentation |
Plot Doneen diagram (High permeability) for all rows
plot_DoneenH(
df,
tc_column,
PI_column,
label_column = NULL,
grp_column = NULL,
convert_units = FALSE
)
df |
Data frame containing the necessary columns. |
tc_column |
Column name for total concentration (tc). |
PI_column |
Column name for PI (optional). |
label_column |
Column name for labels (optional). |
grp_column |
Column name for grouping (optional). |
convert_units |
Logical, whether to convert units. |
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_DoneenH(df, tc_column = "tc", PI_column = "PI", label_column = NULL, grp_column = NULL, convert_units = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.