Skip to content

Commit

Permalink
Bug fix: Minimum Word Length of SNA
Browse files Browse the repository at this point in the history
  • Loading branch information
devbruce committed Feb 26, 2019
1 parent ae8f630 commit 4eea5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/viz/core/sna.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def make_sna_png(
"""

corpus = get_corpus(data=data)
matrix = get_matrix(corpus=corpus, word_len_min=2, stopwords=stopwords)
matrix = get_matrix(corpus=corpus, word_len_min=word_len_min, stopwords=stopwords)
cooccur_matrix = matrix.get('cooccur_matrix')

# -- Make Raw Graph -- #
Expand Down

0 comments on commit 4eea5c8

Please sign in to comment.