diff --git a/app.R b/app.R index 3eb83a5..5e23bfe 100644 --- a/app.R +++ b/app.R @@ -494,6 +494,7 @@ conditionalPanel(condition="input.viewlength2 == 'Multi-year'", conditionalPanel( condition="input.extracountry == true", div( + HTML('
'), style = "position:relative;padding: 5px 10px 5px 0px;", plotOutput("extracountryfigure",height = "400px", click = "plot_click2", @@ -1394,7 +1395,9 @@ if (input$extracountry == TRUE){ geom_line(data=data[CountryCode==input$country2 & Year==input$targetyear2 & Sex %in% input$sexchoice],aes_string(x="Week",y=input$variable, color=shQuote("Target year")), size=1.2)+ geom_line(data=compareline2[Sex %in% input$sexchoice], aes_string(x="Week",y=input$variable, color=shQuote("Reference level")), size=1.2)+ theme(legend.position = "bottom")+ - theme(strip.background = element_blank(),strip.text.x = element_text(color="white")) + theme(strip.background = element_blank(),strip.text.x = element_text(color="white"))+ + ggtitle(paste(names(countrychoices)[countrychoices == input$country2]))+ + theme(plot.title = element_text(hjust = 0.5)) dataset$h = h @@ -1408,7 +1411,10 @@ if (input$extracountry == TRUE){ g = g + geom_ribbon(data=ribbon[Sex %in% input$sexchoice],aes(x=Week,ymin= yminvalue, ymax = ymaxvalue, fill=type,group=group))+ geom_line(data=data[CountryCode==input$country & Year==input$targetyear & Sex %in% input$sexchoice],aes_string(x="Week",y=input$variable, color=shQuote("Target year")), size=1.2)+ - geom_line(data=compareline[Sex %in% input$sexchoice], aes_string(x="Week",y=input$variable, color=shQuote("Reference level")), size=1.2) + geom_line(data=compareline[Sex %in% input$sexchoice], aes_string(x="Week",y=input$variable, color=shQuote("Reference level")), size=1.2)+ + ggtitle(paste(names(countrychoices)[countrychoices == input$country]))+ + theme(plot.title = element_text(hjust = 0.5)) +