From 48cc1d9327d373c57735d4b0f18a33df38f7687d Mon Sep 17 00:00:00 2001 From: Callum Hollywood Date: Tue, 17 Jan 2017 09:35:40 +0200 Subject: [PATCH] Update server.R I picked up a slight code error and propose the solution ['radio' should be 'colour'] --- reactive function/server.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactive function/server.R b/reactive function/server.R index dcee0f7..4ae1c64 100644 --- a/reactive function/server.R +++ b/reactive function/server.R @@ -21,7 +21,7 @@ shinyServer( }) output$text2 <- renderText({ - paste("Color of histogram is", input$radio) + paste("Color of histogram is", input$colour) }) output$text3 <- renderText({ @@ -37,4 +37,4 @@ shinyServer( ) } ) - \ No newline at end of file +