R: tidy text dataset - tibble

From OnnoWiki
Revision as of 08:34, 31 October 2018 by Onnowpurbo (talk | contribs) (Created page with "==Text Vector== text <- c("Because I could not stop for Death -", "He kindly stopped for me -", "The Carriage held but just Ourselves -", "a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Text Vector

text <- c("Because I could not stop for Death -",
          "He kindly stopped for me -",
          "The Carriage held but just Ourselves -",
          "and Immortality")
text


Tidy Text Dataset

library(dplyr)
text_df <- data_frame(line = 1:4, text = text)
text_df