Preventing Rstudio from Displaying in Source Panel

Hi this has just started in version 1.0.136. When I have a markdown file, the graphs are displayed in the source pane.

```{r pressure, echo=FALSE}
plot(pressure)
```

      

for example, when executed by running a snippet, the plot is displayed in the original pane instead of the normal plot pane, for example.

http://i.imgur.com/9m1cQWZ.png

I notice that this only happens when I use markdown and only for a newer version. Is there anyway I can turn this off so that the graphs appear in a regular panel bar? thank you!

+3


source to share


1 answer


I found a solution. This is a new feature in the laptop. To get rid of this, there is a little tweak icon in the source bar, select that and choose Chunkoutput for the console. Here's a screenshot:



enter image description here

+2


source







All Articles