Spaces:
Sleeping
Sleeping
Daryl Fung
commited on
Commit
·
01ea445
1
Parent(s):
a2287fc
changed font size to be bigger with smaller n grams
Browse files- keyword_extraction.py +1 -1
- word.py +1 -1
keyword_extraction.py
CHANGED
@@ -39,7 +39,7 @@ def keyword_extract(doc, kw_model, n_grams, save_output='results/'):
|
|
39 |
plt.title("Word Count")
|
40 |
plt.figure(figsize=(8, 24))
|
41 |
sns.catplot(data=keyword_df, x='words', y='scores', kind='bar', palette='blend:#7AB,#EDA', aspect=1.5)
|
42 |
-
plt.xticks(rotation=-10, fontsize=
|
43 |
plt.savefig(save_output, dpi=300)
|
44 |
plt.close()
|
45 |
|
|
|
39 |
plt.title("Word Count")
|
40 |
plt.figure(figsize=(8, 24))
|
41 |
sns.catplot(data=keyword_df, x='words', y='scores', kind='bar', palette='blend:#7AB,#EDA', aspect=1.5)
|
42 |
+
plt.xticks(rotation=-10, fontsize=8-n_grams)
|
43 |
plt.savefig(save_output, dpi=300)
|
44 |
plt.close()
|
45 |
|
word.py
CHANGED
@@ -35,7 +35,7 @@ def show_gram_plot(doc, n_grams, top_words=10, save_output='results/'):
|
|
35 |
plt.title("Word Count")
|
36 |
plt.figure(figsize=(8, 24))
|
37 |
sns.catplot(data=tokens_df, x='word', y='count', kind='bar', palette='blend:#7AB,#EDA')
|
38 |
-
plt.xticks(rotation=-10, fontsize=
|
39 |
plt.savefig(save_output, dpi=300)
|
40 |
plt.close()
|
41 |
|
|
|
35 |
plt.title("Word Count")
|
36 |
plt.figure(figsize=(8, 24))
|
37 |
sns.catplot(data=tokens_df, x='word', y='count', kind='bar', palette='blend:#7AB,#EDA')
|
38 |
+
plt.xticks(rotation=-10, fontsize=8-n_grams)
|
39 |
plt.savefig(save_output, dpi=300)
|
40 |
plt.close()
|
41 |
|