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
5/10/2021
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
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
Select from the following temperature scales
temp <- 50
tempK <- temp+ 273
tempF <- temp * (9/5) + 32
tempR <- temp * (9/5) + 32 + 459.67
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.
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.