I think this is an easy answer but my lack of experience with Linux is making this difficult.
shinyUI(pageWithSidebar(
headerPanel("MOI Demo"),
#
sidebarPanel(
img(src="GfK_logo_online.jpg",height=72,width=72),
fileInput('file1','Choose an SPSS file'),
uiOutput('DepVar1'),
uiOutput('DepVar2'),
uiOutput('SegVar'),
uiOutput('IDVar'),
uiOutput('IndVars')
),
mainPanel(
tabsetPanel(
tabPanel("Variables By Segments",
h4(textOutput("caption1")),
plotOutput("heatmap",height="800px"),
value=1),
tabPanel("Segment Map",
plotOutput("Map",height="800px"),
value=2),
id='panelnum' )
)))
The page shows up as I expect with the image box at the top of the sidebar panel but it shows the "broken image" icon which indicates to me (I could be wrong) that the app cannot find the image file to display. I have tried putting the image in various places and specifying the full path but with the same result. Any ideas?