Reputation: 133
I`ve started working on a new RMarkdown document. I've noticed that when running chunks inside RStudio, RStudio does not print their output (which it did before!) - neither "inline" below the code chunk nor to the console. This is a very annoying behaviour when working interactively. I've tried to fix it via the global options of RStudio and the chunk options with no success. Knitting the document works as expected.
Although, the problem is not about knitting the document here are the global chunk options I defined for the document.
knitr::opts_chunk$set(
echo = TRUE,
message = FALSE,
warning = FALSE,
fig.align = 'center',
dev = "svg",
dpi = 500
)
Upvotes: 2
Views: 1913
Reputation: 1
This worked for me: (from the above screenshot) swith to "Chunk Output in Console". Then switch back to "Chunk Output Inline"
Upvotes: 0