Skip to content

Instantly share code, notes, and snippets.

@ivelasq
Created January 4, 2022 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivelasq/ce62689a58048e471398a3a6a0edcd25 to your computer and use it in GitHub Desktop.
Save ivelasq/ce62689a58048e471398a3a6a0edcd25 to your computer and use it in GitHub Desktop.
Example Palmer Penguins Shiny Dashboard
library(shiny)
library(shinydashboard)
library(palmerpenguins)
library(tidyverse)
ui <- dashboardPage(
skin = "yellow",
dashboardHeader(title = "Example Palmer Penguins Dashboard",
titleWidth = 360),
dashboardSidebar(
width = 300,
sidebarMenu(
h3(HTML("Palmer Penguins dataset"),
br(),
h4(HTML("The goal of palmerpenguins is to<br/>provide a great dataset for<br/>data exploration & visualization,<br/>as an alternative to `iris`.")),
br(),
"https://allisonhorst.github.io/palmerpenguins/"))
),
dashboardBody(
fluidRow(
box(
title = "Number of Penguins", width = 4, solidHeader = TRUE, status = "primary",
"344"
),
box(
title = "Number of Species", width = 4, solidHeader = TRUE,
"3"
),
box(
title = "Number of Islands", width = 4, solidHeader = TRUE, status = "warning",
"3"
)
),
fluidRow(
box(plotOutput("plot1", height = 300),
status = "warning",
solidHeader = TRUE),
box(plotOutput("plot2",
height = 300))
),
fluidRow(
img(src='https://allisonhorst.github.io/palmerpenguins/reference/figures/lter_penguins.png', align = "center", width = 500),
box(plotOutput("plot3",
height = 300))
)
)
)
server <- function(input, output) {
output$plot1 <- renderPlot({
ggplot(data = penguins,
aes(x = flipper_length_mm,
y = bill_length_mm)) +
geom_point(aes(color = species,
shape = species),
size = 3,
alpha = 0.8) +
geom_smooth(method = "lm", se = FALSE, aes(color = species)) +
theme_minimal() +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(title = "Flipper and bill length",
subtitle = "Dimensions for Adelie, Chinstrap and Gentoo Penguins at Palmer Station LTER",
x = "Flipper length (mm)",
y = "Bill length (mm)",
color = "Penguin species",
shape = "Penguin species") +
theme(legend.position = c(0.85, 0.15),
legend.background = element_rect(fill = "white", color = NA),
plot.title.position = "plot",
plot.caption = element_text(hjust = 0, face= "italic"),
plot.caption.position = "plot")
})
output$plot2 <- renderPlot({
ggplot(data = penguins, aes(x = flipper_length_mm)) +
geom_histogram(aes(fill = species),
alpha = 0.5,
position = "identity") +
scale_fill_manual(values = c("darkorange", "purple", "cyan4")) +
theme_minimal() +
labs(x = "Flipper length (mm)",
y = "Frequency",
title = "Penguin flipper lengths")
})
output$plot3 <- renderPlot({
ggplot(data = penguins,
aes(x = flipper_length_mm,
y = body_mass_g)) +
geom_point(aes(color = species,
shape = species),
size = 3,
alpha = 0.8) +
theme_minimal() +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(title = "Penguin size, Palmer Station LTER",
subtitle = "Flipper length and body mass for Adelie, Chinstrap, and Gentoo Penguins",
x = "Flipper length (mm)",
y = "Body mass (g)",
color = "Penguin species",
shape = "Penguin species") +
theme(legend.position = c(0.2, 0.7),
legend.background = element_rect(fill = "white", color = NA),
plot.title.position = "plot",
plot.caption = element_text(hjust = 0, face= "italic"),
plot.caption.position = "plot")
})
}
shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment