Create a shiny app with 4 tabs on the left and a logo on the right, Using the Boston housing dataset show some tables on each tab with filters
Drop files here
or click to upload
library(shiny)
library(shinydashboard)
library(DT)
library(dplyr)
library(MASS)
source("ui.R")
source("server.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?