-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
27 lines (23 loc) · 982 Bytes
/
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
library(shiny)
# Define UI for random distribution application
shinyUI(pageWithSidebar(
# Application title
headerPanel("Trabalho De Estatistica em R "),
br (),
# Show a tabset that includes a plot, summary, and table view
# of the generated distribution
mainPanel(
tabsetPanel(
tabPanel("Exercio 17",
br(),
h4("Use a formula 10-2 para encontrar o valor do coeficiente de correlacao linear r para os custo emparelhados pizza/tarifa do metro apresentados na tabela 10-2"),
plotOutput("plot1"),
h4("Resultado : ",textOutput("resul"))
),
tabPanel("Exercico 3 ",
br(),
h4("unsando os termometro do exemplo 3 ache a probabilidade de selecinarmos aleatoriamente um termometro que apresente leitura no ponto de congelamento da agua superior -1.23"),
plotOutput("plot2"))
)
)
))