Answer the following questions and complete the exercises in
RMarkdown. Please embed all of your code and push your final work to
your repository. Your final lab report should be organized, clean, and
run free from errors. Remember, you must remove the #
for
the included code chunks to run. Be sure to add your name to the author
header above.
Make sure to use the formatting conventions of RMarkdown to make your report neat and clean!
library(tidyverse)
library(janitor)
library(shiny)
library(shinydashboard)
library(shinythemes)
For this assignment, we will use the built-in mammals sleep dataset. The data are from: V. M. Savage and G. B. West. A quantitative, theoretical framework for understanding mammalian sleep. Proceedings of the National Academy of Sciences, 104 (3):1051-1056, 2007.
msleep <- msleep
names(msleep)
## [1] "name" "genus" "vore" "order" "conservation"
## [6] "sleep_total" "sleep_rem" "sleep_cycle" "awake" "brainwt"
## [11] "bodywt"
msleep %>%
ggplot(aes(x=vore, y=sleep_total, fill=vore))+
geom_boxplot(na.rm=T, alpha=0.6)+
theme_light(base_size=14)
ui <- fluidPage(
selectInput("y",
"Select Sleep Variable",
choices = c("sleep_total", "sleep_rem", "sleep_cycle", "awake"),
selected = "sleep_total"),
plotOutput("plot", width="600px", height="500px")
)
server <- function(input, output, session) {
session$onSessionEnded(stopApp)
output$plot <- renderPlot({
msleep %>%
ggplot(aes_string(x="vore", y=input$y, fill="vore"))+
geom_boxplot()
})
}
shinyApp(ui, server)
ui <- fluidPage(
radioButtons("y",
"Select Y Variable",
choices = c("sleep_total", "sleep_rem", "sleep_cycle", "awake"),
selected = "sleep_total"),
plotOutput("plot", width = "500px", height = "400px")
)
server <- function(input, output, session) {
output$plot <- renderPlot({
session$onSessionEnded(stopApp)
ggplot(data=msleep,
aes_string(x = "vore", y = input$y, fill = "vore"))+
geom_boxplot()+
theme_minimal()
})
}
shinyApp(ui, server)
msleep %>%
ggplot(aes(x=sleep_total, fill=vore))+
geom_density(alpha=0.6)+
theme_light(base_size=14)
# Remove the NA's from vore so it isn't an option in the choices
msleep <- msleep %>%
filter(!is.na(vore))
ui <- fluidPage(selectInput("x",
"Select Vore Type",
choices = unique(msleep$vore),
selected="carni"),
plotOutput("plot", width="500px", height="400px")
)
server <- function(input, output, session) {
output$plot <- renderPlot({
msleep %>%
filter(vore==input$x) %>%
ggplot(aes(sleep_total))+
geom_density(fill="steelblue", color="black", alpha=0.6)+
labs(x="Sleep Total", y=NULL)+
theme_light(base_size=14)
})
}
shinyApp(ui, server)