feat: add stopwords for meeting_tm_report

This commit is contained in:
Martin Chan 2021-08-27 15:39:49 +01:00
Родитель dc20e06741
Коммит e74028423c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -124,7 +124,7 @@ Column {data-width=50%}
### Top terms - Days ### Top terms - Days
```{r echo=FALSE, message=FALSE, warning=FALSE} ```{r echo=FALSE, message=FALSE, warning=FALSE}
data %>% subject_scan(mode = "days") data %>% subject_scan(mode = "days", stopwords = stopwords)
``` ```
Column {data-width=50%} Column {data-width=50%}
@ -133,7 +133,7 @@ Column {data-width=50%}
### Top terms - Hours ### Top terms - Hours
```{r echo=FALSE, message=FALSE, warning=FALSE} ```{r echo=FALSE, message=FALSE, warning=FALSE}
data %>% subject_scan(mode = "hours") data %>% subject_scan(mode = "hours", stopwords = stopwords)
``` ```