Skip to content

Commit

Permalink
commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
sdumble1 committed Jan 11, 2021
1 parent 9a332c1 commit 6c90e7a
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions app.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
#
# 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(shiny)
library(agridat)
library(tidyverse)
Expand All @@ -15,13 +6,13 @@ data1<-cox.stripsplit
data1$none<-"1"
data1$x<-data1$soil

# Define UI for application that draws a histogram

ui <- fluidPage(

# Application title

titlePanel("Factorial Experiments Presentation"),

# Sidebar with a slider input for number of bins

sidebarLayout(
sidebarPanel(
selectInput("outcome",
Expand All @@ -36,14 +27,14 @@ ui <- fluidPage(
htmlOutput("bucketlist")
),

# Show a plot of the generated distribution

mainPanel(
plotOutput("Plot1")
)
)
)

# Define server logic required to draw a histogram

server <- function(input, output) {

output$Plot1 <- renderPlot({
Expand Down

0 comments on commit 6c90e7a

Please sign in to comment.