I feel like there is really silly mistake, but I can't solve this myself and it is driving me crazy. To simply put, Rshiny is not display the image.
I put the source image in www directory in same path as the Rscript file, yet something is wrong.
The code I used are below:
ui <- fluidPage(
fluidRow(
titlePanel(title=div(img(height = 100,
width = 100,
src = "dummy-logo.png"), "dummy")),
sidebarLayout(...
This is the pathway for my image.
Here is the directory.:
Yet Rshiny could not find the image:
I looked around other posts but I am still not sure where I went wrong. I am pretty sure this is some really dumb mistake that I will be ashamed of but as of now, it is driving me nuts. Thank you.