-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.R
55 lines (42 loc) · 1.22 KB
/
app.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
library(tidyverse)
library(shiny)
library(shinybusy)
library(palmerpenguins)
ui <- fluidPage(
titlePanel("Penguins"),
sidebarLayout(
sidebarPanel(
selectInput("species", "Species:",
choices=unique(penguins$species)),
selectInput("xvar","X Variable:",
choices=setdiff(names(penguins),c("species", "island", "sex", "year"))),
selectInput("yvar","Y Variable:",
choices=setdiff(names(penguins),c("species", "island", "sex", "year"))),
selectInput("zvar","Z Variable:",
choices=c("island", "sex"))
),
mainPanel(
plotOutput("plot")
)
)
)
server <- function(input, output) {
subData <- reactive({
penguins %>%
filter(species == input$species)
})
output$plot <- renderPlot(
ggplot( subData(), aes(x = !!as.name(input$xvar),
y = !!as.name(input$yvar),
color = !!as.name(input$zvar))) + geom_point()
)
}
shinyApp(ui,server)