I’m a list
But I’m not incremental
Even though I’m supposed to be
You can force incremental contents (if you have incremental: false in the YAML)
By pausing the contents
This is how you do it:
When you click the Render button a document will be generated that includes:
When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:
vediamo se è più piccolo
la metto nella posizione che voglio io
This text will turn green
Let’s say you are presenting something that is really complicated and you need some boost of confidence
##Footnotes: Code
My blood brother is an immigrant, a beautiful immigrant 1
graph = mtcars %>%
ggplot( aes(mpg, hp, color = gear)) +
geom_point() +
geom_smooth()
ggplotly(graph)
#shiny app
ui = fluidPage(
selectInput(inputId = "mySelection",
label = h3("Select box"),
choices = list("Choice 1" = 1, "Choice 2" = 2, "Choice 3" = 3),
selected = 1),
verbatimTextOutput(
outputId = "myOutput"
)
)
server = function(input, output) {
output$myOutput = renderText({
paste(paste("This is my choice"), input$mySelection)
})
}
shinyApp(ui, server)
Presentations