| plot_DoneenL {iwaqr} | R Documentation | 
Plot Doneen diagram (Low permeability) for all rows
Description
This function plots the USSL diagram for the given data frame.
Usage
plot_DoneenL(
  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_DoneenL(df, tc_column = "tc", PI_column = "PI", label_column = NULL, grp_column = NULL, convert_units = FALSE)
[Package iwaqr version 1.8.4 Index]