Rmarkdown will not display code outputs in HTML

When I render my rmarkdown file as an html document it only displays the code. The plot i want to include in my document does not display in place of the code. It also won't display any of the outputs for any of my other chunks but the plot is the most frustrating.

However, the sample rmarkdown document plot, when used in my document, does display the plot and not the code as intended.

This is the plot that wont display and the corresponding code which does display.

1 Like

HI @Thedohboy23 , remember put the reproducible example of his data. Is way to obtain a good help. Use dput() for make this.

Maybe the problem is the final object ---- e ---

e <- ggplot(crash_by_age, aes(Age, Crashes_Reported, color= Sex)) +
        geom_point()
e

If you want more people to be able to help, please provide a reproducible example by sharing your all Rmd content. Thanks!

FAQ: How to Format R Markdown Source

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.