convert_water function

Convert water class object to a dataframe

Convert water class object to a dataframe

This converts a water class to a dataframe with individual columns for each slot (water quality parameter) in the water. This is useful for one-off checks and is applied in all fn_once tidywater functions. For typical applications, there may be a fn_once tidywater function that provides a more efficient solution.

convert_water(water)

Arguments

  • water: A water class object

Returns

A data frame containing columns for all non-NA water slots.

Examples

library(dplyr) library(tidyr) # Generates 1 row dataframe example_df <- define_water(ph = 7, temp = 20, alk = 100) %>% convert_water() example_df <- water_df %>% define_water_chain() %>% mutate(to_dataframe = map(defined_water, convert_water)) %>% unnest(to_dataframe) %>% select(-defined_water)

See Also

define_water

  • Maintainer: Sierra Johnson
  • License: Apache License (>= 2) | MIT + file LICENSE
  • Last published: 2025-01-22