jene
19 de julio de 2019
ui<- fluidPage( headerPanel(“Noveno curso”), sliderInput(input=“num”, label=“Ingrese un numero ennte uno y 1000” ,value=25 ,min=1 ,max =100), plotOutput(“hist”)
)
server<-function(input, output) { output\(hist<-renderPlot( {hist(rnorm(input\)num))}
) }
## Warning: package 'shiny' was built under R version 3.5.3
##
## Listening on http://127.0.0.1:8741
##conclusion: se ingreso el numero 25 y se muestra el hist.