5/10/2021

Temperature App

Sometimes it can be very difficult to quickly go back and forth between different termperature scales. Having a dashboard that can switch between the different scales would be very useful

How Does It Work?

By using a slider the user can select the temperature in Celcius to convert to the other temperature scales.

In this case we take 50 Celcius

Other Temperature Scales

Select from the following temperature scales

  • Farenheit
  • Kelvin
  • Rankine

Calculations

temp <- 50
    tempK <- temp+ 273
    tempF <- temp * (9/5) + 32
    tempR <- temp * (9/5) + 32 + 459.67

Output

After the temperature and conversion scale are selected the output is generated to the right of the input.

Below is an example of what the app calculates

## [1] 323
## [1] 122
## [1] 581.67

The user can select a new temperature and see the output seamlessly change.

Documentation

The app has two different tabs, one for output and another for documentation to tell how the user should interact with the App. It helps divide up the user space so the documentation can always be referenced.