This function converts temperature from Celsius to Fahrenheit.

celsius_to_fahrenheit(celsius)

Arguments

celsius

A numeric value representing the temperature in Celsius.

Value

A numeric value representing the temperature in Fahrenheit.

Examples

celsius_to_fahrenheit(0) # Should return 32
#> [1] 32
celsius_to_fahrenheit(100) # Should return 212
#> [1] 212