knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of conversorR is to convert temperatures: Celsius degrees to Fahrenheit Celsius degrees do Kelvin(K) Fahrenheit to Celsius degrees Fahreneheit degrees do Kelvin(K) Kelvin(K) to Celsius degrees Kelvin(K) to Fahrenheit degrees
The development version from GitHub with:
# install.packages("devtools") devtools::install_github("marcelofukuoka/conversorR")
Converting 30 Celsius degrees to Fahrenheit:
library(conversorR) convert_Celsius_to_Fahrenheit <- cel_to_fah(30) convert_Celsius_to_Fahrenheit # [1] 86
Converting 86 Fahrenheit degrees to Celsius:
library(conversorR) convert_Fahrenheit_to_Celsius <- fah_to_cel(86) convert_Fahrenheit_to_Celsius # [1] 30
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.