Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Aim of the Fuction:
Reproduce the valueBox function From ShinyDashboard package with almost the same functionality. This code allows us to use valueboxes without loading ShinyDashboard package and without using the required dashboard UI structure.
Usage:
valueBox(value, subtitle, icon, color)
Arguments:
value
= The numeric value to display in the box.
subtitle
= The label text value to display in the box.
icon
= Font Awesome icon which appears on the right side of the valuebox. Be aware of the right spelling, check Font Awesome website for details. Valid parameter can be e.g. tachometer
color
= Background color of the valueBox. Use can pick character color names like red
, or green
, It also possible to use Hex colors like #ff9999
Example:
The source code of the Shiny app can be found here.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.