| calcFtoC | R Documentation |
Convert temperature in Fahrenheit to temperature in Celsius
calcFtoC(TempF)
TempF |
Temperature (Fahrenheit ) |
TempC Temperature (Celsius)
# Fahrenheit to Celsius
calcFtoC(32)
calcFtoC(68)
# mydata file
filepath <- data_file_path("mydata.xlsx")
mydata <- readxl::read_excel(filepath, sheet = "mydata", n_max = 5)
mydata |> dplyr::mutate(TempC = calcFtoC((Temp * 9/5) + 32))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.