Es posible crear la aplicación mínima (que no hace nada) para experimentar con la estética. A continuación el contenido de los archivos ui.R y server.R:
ui.R
server.R
Construya usted mismo la aplicación mínima usando el código mostrado abajo.
ui.R
server.R
Tranquilo!!! Al correr la aplicación usted no va a encontrar nada porque la aplicación no hace nada.
Sustituya el archivo ui.R por lo siguiente:
ui.R
Sustituya el archivo ui.R por lo siguiente:
ui.R
Sustituya el archivo ui.R por lo siguiente:
shinyUI(fluidPage(
titlePanel( strong("My Shiny App") ),
sidebarLayout(
sidebarPanel( em("Sidebar panel") ),
mainPanel(
h1("First level title with h1"),
h2("Second level title with h2"),
h3("Third level title with h3"),
h4("Fourth level title with h4"),
h5("Fifth level title with h5"),
h6("Sixth level title with h6"),
h1(em("Text obtained with h1 and then em"))
)
)
))
Sustituya el archivo ui.R por el código mostrado abajo.
library(shiny)
shinyUI(fluidPage(
titlePanel("Mi aplicacion de prueba"),
sidebarLayout(
sidebarPanel(),
mainPanel(
p("p creates a paragraph of text."),
p("A new p() command starts a new paragraph.",
style = "font-family: 'times'; font-si16pt"),
strong("strong() makes bold text."),
em("em() creates italicized (i.e, emphasized) text."),
br(),
code("code displays your text similar to computer code"),
p("This is web page", a(href="", "click here"), "to visit it.")
))
))
Se deben seguir los siguientes pasos:
img(src="unal.png", height=300, width=520)
.