Skip to content

Commit

Permalink
Changing ci95lb and ci95ub to ci95Lb and ci95Ub. Adding favicon. Fixi…
Browse files Browse the repository at this point in the history
…ng app title.
  • Loading branch information
schuemie committed Sep 27, 2018
1 parent 3178ea3 commit ad4f34f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
Binary file added LegendBasicViewer/favicon.ico
Binary file not shown.
16 changes: 8 additions & 8 deletions LegendBasicViewer/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ library(DT)
mainColumns <- c("description",
"databaseId",
"rr",
"ci95lb",
"ci95ub",
"ci95Lb",
"ci95Ub",
"p",
"calibratedRr",
"calibratedCi95Lb",
Expand Down Expand Up @@ -125,8 +125,8 @@ shinyServer(function(input, output, session) {
table <- merge(table, analyses)
table <- table[, mainColumns]
table$rr <- prettyHr(table$rr)
table$ci95lb <- prettyHr(table$ci95lb)
table$ci95ub <- prettyHr(table$ci95ub)
table$ci95Lb <- prettyHr(table$ci95Lb)
table$ci95Ub <- prettyHr(table$ci95Ub)
table$p <- prettyHr(table$p)
table$calibratedRr <- prettyHr(table$calibratedRr)
table$calibratedCi95Lb <- prettyHr(table$calibratedCi95Lb)
Expand Down Expand Up @@ -595,8 +595,8 @@ shinyServer(function(input, output, session) {
estimatesOnly = TRUE)
mainEffects <- data.frame(logRr = mainEffects$calibratedLogRr,
seLogRr = mainEffects$calibratedSeLogRr,
ci95lb = mainEffects$calibratedCi95Lb,
ci95ub = mainEffects$calibratedCi95Ub)
ci95Lb = mainEffects$calibratedCi95Lb,
ci95Ub = mainEffects$calibratedCi95Ub)
writeLines("Plotting main effects")
plot <- plotLargeScatter(mainEffects, "Calibrated hazard ratio")
return(plot)
Expand Down Expand Up @@ -705,8 +705,8 @@ shinyServer(function(input, output, session) {
estimatesOnly = TRUE)
interactionEffects <- data.frame(logRr = interactionEffects$logRrr,
seLogRr = interactionEffects$seLogRrr,
ci95lb = interactionEffects$ci95Lb,
ci95ub = interactionEffects$ci95Ub)
ci95Lb = interactionEffects$ci95Lb,
ci95Ub = interactionEffects$ci95Ub)
writeLines("Plotting interaction effects")
plot <- plotLargeScatter(interactionEffects, "Uncalibrated hazard ratio ratio")
return(plot)
Expand Down
3 changes: 2 additions & 1 deletion LegendBasicViewer/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ shinyUI(
fluidPage(style = "width:1500px;",
titlePanel(
title=div(img(src="logo.png", height = 50, width = 50),
"LEGEND basic viewer")),
"LEGEND basic viewer"),
windowTitle = "LEGEND basic viewer"),
tags$head(tags$style(type = "text/css", "
#loadmessage {
position: fixed;
Expand Down

0 comments on commit ad4f34f

Please sign in to comment.