plot_DoneenH {iwaqr}R Documentation

Plot Doneen diagram (High permeability) for all rows

Description

Plot Doneen diagram (High permeability) for all rows

Usage

plot_DoneenH(
  df,
  tc_column,
  PI_column,
  label_column = NULL,
  grp_column = NULL,
  convert_units = FALSE
)

Arguments

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.

Value

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)


[Package iwaqr version 1.8.4 Index]