Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ df = pd.DataFrame.from_dict(dict_next_words)
|
|
36 |
sns.set_theme(style="whitegrid")
|
37 |
sns.set_color_codes("pastel")
|
38 |
fig, ax = plt.subplots(figsize=(6, 15))
|
39 |
-
sns.barplot(x='Score', y='Word',
|
40 |
st.pyplot(fig)
|
41 |
|
42 |
#st.table(df)
|
|
|
36 |
sns.set_theme(style="whitegrid")
|
37 |
sns.set_color_codes("pastel")
|
38 |
fig, ax = plt.subplots(figsize=(6, 15))
|
39 |
+
sns.barplot(x='Score', y='Word', data=df, orient = 'h')
|
40 |
st.pyplot(fig)
|
41 |
|
42 |
#st.table(df)
|