Convert temperature measured in Kelvin- or Celsius-scale to Fahrenheit (°F).
Arguments
- x
temperature in initial scale:
Type:
assert_double
.
Value
Temperature in Fahrenheit-scale, [°F].
Type: assert_double
.
Examples
library(pipenostics)
# Convert from Kelvin to Fahrenheit:
f_k(c(0, 373.15))
#> [1] -459.67 212.00
# Convert from Celsius to Fahrenheit:
f_c(c(-273.15, 100))
#> [1] -459.67 212.00