Skip to content

Commit 24a018e

Browse files
committed
simplyfing things
1 parent 3d51850 commit 24a018e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

chapters/1.Preprocessing/05_lemmatization.qmd

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,8 @@ Alright! Problem solved. Keep in mind, however, this would apply to most words r
8686
Let's save our work as a new file named `comments_preprocessed`:
8787

8888
``` r
89-
# Select only important columns
90-
output <- lemmatized_nonumbers %>%
91-
select(id, sentences)
92-
9389
# Save to CSV
94-
write.csv(output, "./data/preprocessed/comments_preprocessed.csv")
90+
write.csv(lemmatized_nonumbers, "./data/preprocessed/comments_preprocessed.csv")
9591
```
9692

9793
## Before we go

0 commit comments

Comments
 (0)