- Notifications
You must be signed in to change notification settings - Fork43
Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.
License
Appsilon/semantic.dashboard
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.
Are you fed up with ordinaryshinydashboard
look?
Give your app a new fresh look withFomantic UI support.
library(shiny)library(shinydashboard)# <-- Change this line to: library(semantic.dashboard)ui<- dashboardPage( dashboardHeader(title="Basic dashboard"), dashboardSidebar(sidebarMenu( menuItem(tabName="home",text="Home",icon= icon("home")), menuItem(tabName="another",text="Another Tab",icon= icon("heart")) )), dashboardBody( fluidRow( box(plotOutput("plot1",height=250)), box(title="Controls", sliderInput("slider","Number of observations:",1,100,50) ) ) ))server<-function(input,output) { set.seed(122)histdata<- rnorm(500)output$plot1<- renderPlot({data<-histdata[seq_len(input$slider)] hist(data) })}shinyApp(ui,server)
semantic.dashboard
offers basic functions for creating dashboard with Fomantic UI.
Installshiny.semantic
library first.Here you can find how.
You can install a stable versionsemantic.dashboard
from CRAN repository:
install.packages("semantic.dashboard")
The development version can be installed from GitHub usingremotes
.
remotes::install_github("Appsilon/semantic.dashboard")
To installprevious version you can run:
remotes::install_github("Appsilon/semantic.dashboard", ref = "0.1.0")
You can find examples in theexamples/
folder of theGitHub repository.
You can checkdocumentation for tutorials.
If you want to contribute to this project please submit a regular PR, once you're done with new feature or bug fix. Please checkdevelopment/README.md
first! It contains usefulinformation that will help you run your dev environment forsemantic.dashboard
.
We used the latest versions of dependencies for this library, so please update your R environment before installation.
However, if you encounter any problems, try the following:
- Up-to-date R language environment
- Installing specific dependent libraries versions
- shiny.semantic
- Release of a stable 1.0.0 version
- Closer integration with shinydashboard
Appsilon is aPosit (formerly RStudio) Full Service Certified Partner.
Learn more atappsilon.com.
Get in touchopensource@appsilon.com
Explore theRhinoverse - a family of R packages built aroundRhino!
About
Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.