Я хочу использовать R Markdown для печати открытых ответов (символьных строк любой длины) на вопрос опроса, и я хочу, чтобы все ответы были в одном заголовке. Например, вопрос «Как этот учитель может совершенствоваться?» хранится во фрейме данных с именем d
в переменной с именем x
.
Вот пример:
---
title: "Teacher Survey"
output:
html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE)
```
```{r}
d <- data.frame(id = (1:2), x =c("Test to see if word gets split: I kind
of think that for this teacher to improve they will have make a better
attempt to attend to the needs of all the students in the classroom",
"For this teacher to improve they will have make a better attempt to
attend to the needs of all the students in the classroom"),
stringsAsFactors = FALSE)
```
###How can this teacher improve
```{r comment=NA}
print(d$x)
```
Первый ответ печатает «bette» в первой строке и «r» во второй строке вместо того, чтобы печатать «лучше» все в одной строке. Как мне сделать так, чтобы «лучше» печаталось все в одну строку?