Я компилирую Rmd-документ (скажем, test.Rmd
) в R, используя
>> library('rmarkdown');
>> rmarkdown::render('test.Rmd');
Вот тестовый документ:
---
title: "Musterdokument für Rmd"
subtitle: "Testcase"
author:
- "Max Mustermann"
date: "2018-10-09"
output:
pdf_document:
editor_options:
chunk_output_type: console
---
# Introduction
This is a test document.
# My code
Here is a test R-script
```{r, test 1, eval=TRUE, results="show", echo=TRUE, message=FALSE, error=FALSE, warning=FALSE, comment=''}
options('digits'=6);
x <- runif(1);
print(x); # will be shown in the output document. How do I get it to display in the R-console too/instead?
```
```{r, test 2, eval=TRUE, results="hide", echo=TRUE, message=FALSE, error=FALSE, warning=FALSE, comment=''}
x <- runif(1);
print(x); # still doesn't work...
```
(мне пришлось сделать отступ в этой публикации такчто символы `` `не будут выходить из блока кода.)
Иногда я действительно хочу, чтобы вещи выводились на обычную R-консоль например взаимодействие с меню или просто обычные команды печати.Но, похоже, все идет прямо к документу.Есть ли способ быть в состоянии сделать оба?