Package

Creating Interactive Menus with shinydashboard::menuItem in R Shiny

shinydashboard is a popular R package that provides a framework for creating interactive dashboards in Shiny applications. One of the key elements of shinydashboard is the menuItem function, which allows you to create interactive menu items that can be used to navigate between different sections or pages of your dashboard. In this article, we will …

Creating Interactive Menus with shinydashboard::menuItem in R Shiny Read More »

Working with big data sets in R Shiny using SQLite

Big data sets can affect the performance of R Shiny applications. This is why it is important to think about the architecture of the application, including the way data is stored and retrieved. An interesting approach is storing data in an SQLite database instead of R data files (e.g. *.rdata/*.rds) and only load the subset …

Working with big data sets in R Shiny using SQLite Read More »