I have text data stored in two different formats- as a dataframe and as a series of folders (because of the storage type, I'm not sure I will be able to post this question in a reproducible format).
I'm able to create a corpus from each of these different text sources as below, but was wondering how to combine them into one corpus using the topicmodels package in R?
I've executed:
dataA<- Corpus(DirSource(foldersA), readerControl = list(language = "eng"))
dataB<- Corpus(DataframeSource(dataframeB),readerControl = list(language = "eng"))
But want to combine them into one unified corpus.