Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.

License

NotificationsYou must be signed in to change notification settings

Appsilon/semantic.dashboard

Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.

R-CMD-checkcodecovcranlogstotal

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 dashboards comparison

semantic.dashboard offers basic functions for creating dashboard with Fomantic UI.

How to install?

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")

Example

You can find examples in theexamples/ folder of theGitHub repository.

You can checkdocumentation for tutorials.

How to contribute?

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.

Troubleshooting

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:

  1. Up-to-date R language environment
  2. Installing specific dependent libraries versions
    • shiny.semantic

Future enhacements

  • Release of a stable 1.0.0 version
  • Closer integration with shinydashboard

Appsilon

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!

We are hiring!

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

Stars

Watchers

Forks

Packages

No packages published

Contributors17


[8]ページ先頭

©2009-2025 Movatter.jp