我使用了最小的flipbookr
模板,并喜欢用旁边的代码逐行说明一些文本清理步骤。这是我的代码块:
library(tidyverse)
library(tidytext)
library(stringr)
library(wikifacts)
R_EN <- wiki_define('R (programming language)')
R_EN #BREAK
R_EN %>%
## Remove digits
str_remove_all("[:digit:]") %>% #BREAK
## Remove punctuation
str_remove_all("[[:punct:]]") %>% #BREAK
## Make everything lowercase
str_to_lower() %>% #BREAK
## Remove any trailing whitespace around the text
str_trim("both") %>% #BREAK
## Remove newline character
str_replace_all("[\r\n]" , " ") #BREAK
字符串
只有前几个单词显示在右边(编译后的markdown)。我如何才能使一个长字符的所有(或至少更多)行显示出来?
的数据
就像他们在控制台中做的那样:
1条答案
按热度按时间fhity93d1#
这段代码怎么样:
r chunk_reveal("my_wiki")
r chunk_reveal("my_wiki1")