Shiny’s grid layout or how to arrange elements side-by-side

The R Shiny framework provides various layout systems to create responsive and flexible user interfaces. One of the most popular layout systems is the grid layout system. In this article, we will discuss the R Shiny grid layout system in detail and provide code examples to demonstrate how it works. What is the grid layout …

Shiny’s grid layout or how to arrange elements side-by-side Read More »

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 »

Shiny Modules

Shiny modules help you break down more complex applications into manageable bits. In this post, I will give you a short intro and an example of how you can use modules in your application.