Skip to content

Commit 1071587

Browse files
committed
Fix file path for comments data and update chunk options for CI/CD rendering
1 parent 9499998 commit 1071587

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

chapters/2.TextAnalysis/common_processes.qmd

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,15 @@ library(tidytext)
2222
```
2323

2424
```{r}
25-
#| output: false
25+
#| include: false
26+
# This is just to render the document correctly in the CI/CD pipeline
27+
comments <- readr::read_csv("../../data/clean/comments_preprocessed.csv")
28+
```
29+
30+
```{r}
31+
#| eval: false
2632
# Load the text data
27-
comments <- readr::read_csv("../../data/clean/comments_preprocessed.csv") # Adjust the path to your data location
33+
comments <- readr::read_csv("data/clean/comments_preprocessed.csv") # Adjust the path to your data location
2834
```
2935

3036
Explore the first few rows of the dataset to understand its structure.

0 commit comments

Comments
 (0)