We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9499998 commit 1071587Copy full SHA for 1071587
chapters/2.TextAnalysis/common_processes.qmd
@@ -22,9 +22,15 @@ library(tidytext)
22
```
23
24
```{r}
25
-#| output: false
+#| 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
32
# Load the text data
-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
34
35
36
Explore the first few rows of the dataset to understand its structure.
0 commit comments