I want to add a document to a pre-generated matrix using CountVectorizer.
word_counter = CountVectorizer()
words_matrix = word_counter.fit_transform(['first string','second string'])
Now I want to add another string 'third string' to words_matrix. Extending the matrix - something like this:
words_matrix += word_counter.fit_transform(['third string'])
But I can't get it to work without fit_transforming it all together.