R/Liter_To_Gal.R

Defines functions Liter_To_Gal

Documented in Liter_To_Gal

#'Convert Liters to Gallons
#'
#'This function takes in a numeric value in liters and
#'converts it to a numeric value in gallons.
#'
Liter_To_Gal <- function(x){
  return(x/3.785)
}
jocelynburrell/mectrictostandard documentation built on May 14, 2019, 12:55 a.m.