Skip to content

Commit ddf30f8

Browse files
committed
Cleaned up first three lessons
1 parent 4af6aec commit ddf30f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1841
-1321
lines changed

app.R

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# User Interface
2+
ui <- fluidPage(
3+
# The input text box
4+
textInput(inputId = "input_text",
5+
label = "My input text"),
6+
# The output text
7+
textOutput(outputId = "output_text")
8+
)
9+
10+
# Server
11+
server <- function(input, output){
12+
# Render the text
13+
output$output_text <- renderText({
14+
input$input_text
15+
})
16+
}
17+
18+
# Run the app
19+
shinyApp(ui = ui, server = server)
20+

docs/img/CSS_Cursors.png

135 KB
Loading

docs/img/CSS_border_style.png

51.2 KB
Loading

docs/img/CSS_serif_sans_serif.png

23.7 KB
Loading
23.5 MB
Loading
17.3 MB
Loading
18.7 MB
Loading

docs/img/Create_project_demo.gif

23.7 MB
Loading

docs/img/Create_script_demo.gif

23.8 MB
Loading

docs/img/Exporting_app.gif

23.7 MB
Loading

0 commit comments

Comments
 (0)