-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
51 lines (42 loc) · 1.52 KB
/
ui.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
#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
library(shiny)
library(shinythemes)
# Define UI for application that draws a histogram
shinyUI(fluidPage(
theme = shinytheme("superhero"),
# Application title
titlePanel("Models For Sorption Isotherms"),
h4("Piyadi G. J. Lakshika"),
h4("Statistical Consultanct Unit of USJP, 2020"),
br(),
br(),
br(),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
#sliderInput("bins",
# "Number of bins:",
# min = 1,
# max = 50,
# value = 30),
fileInput("file","Upload the file"), #fileInput() function is used to upload a file
#helpText("Default file size is 5MB"),
helpText("Select the parameters below"),
checkboxInput(inputId = 'header', label = "Header", value = TRUE),
radioButtons(inputId = 'sep', label = 'Separator', choices = c(Comma=',',Semicolon=';',Tab='\t', Space = ''), selected = ','),
uiOutput("selectModel")
),
# Show a plot of the generated distribution
mainPanel(
# plotOutput("distPlot")
uiOutput("tb")
)
)
))