Advertisement
Guest User

Untitled

a guest
May 21st, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1.  
  2. ---
  3. title: "Dashboard Example"
  4. output:
  5. flexdashboard::flex_dashboard:
  6. orientation: rows
  7. ---
  8.  
  9. ```{r setup, include=FALSE}
  10. library(flexdashboard)
  11.  
  12. ```
  13.  
  14. Instrument Class 1
  15. -------------------------------------
  16.  
  17.  
  18. ### Instrument 1
  19.  
  20. ```{r, echo=FALSE}
  21. valueBox("Batch A", caption = NULL, icon = NULL, color = "success", href = NULL)
  22. ```
  23.  
  24. ### Instrument 2
  25.  
  26. ```{r}
  27. valueBox("Not in use", caption = NULL, icon = NULL, color = "#7f7f7f", href = NULL)
  28. ```
  29.  
  30. ### Instrument 3
  31.  
  32. ```{r}
  33. valueBox("Batch B", caption = NULL, icon = NULL, color = "success", href = NULL)
  34. ```
  35.  
  36. ### Instrument 4
  37.  
  38. ```{r}
  39. valueBox("Not in use", caption = NULL, icon = NULL, color = "#7f7f7f", href = NULL)
  40. ```
  41.  
  42. Instrument Class 2
  43. -------------------------------------
  44.  
  45. ### Instrument 5
  46.  
  47. ```{r}
  48. valueBox("Not in use", caption = NULL, icon = NULL, color = "#7f7f7f", href = NULL)
  49. ```
  50.  
  51. ### Instrument 6
  52.  
  53. ```{r}
  54. valueBox("Batch C", caption = NULL, icon = NULL, color = "success", href = NULL)
  55. ```
  56. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement