I'm trying to insert an image from my computer into an RMarkdown document. The image is located at "K:/WW_Reporting/rMarkdown/Logo_address.png" and my rMarkdown file is located in the same rMarkdown folder. I've tried putting the image in a subfolder under rMarkdown called "images" and linking to that also.
The code I've tried:
knitr::opts_chunk$set(echo = TRUE)
knitr::include_graphics("K:/WW_Reporting/rMarkdown/Logo_address.png")
and

and my image displays in my file but not on the knit html document. This is my first time trying RMarkdown. Is there something wrong with the location of my files? is there something else I should be doing? please help!