changgun commited on
Commit
f45344a
1 Parent(s): 5106b32
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def test_v02():
19
  dataset = load_dataset("merve/poetry", streaming=True)
20
  df = pd.DataFrame.from_dict(dataset["train"])
21
  st.write("Most appearing words including stopwords")
22
- st.bar_chart(words[0:50])
23
  st.write("Number of poems for each author")
24
  sns.catplot(x="author", data=df, kind="count", aspect = 4)
25
  plt.xticks(rotation=90)
 
19
  dataset = load_dataset("merve/poetry", streaming=True)
20
  df = pd.DataFrame.from_dict(dataset["train"])
21
  st.write("Most appearing words including stopwords")
22
+ # st.bar_chart(words[0:50])
23
  st.write("Number of poems for each author")
24
  sns.catplot(x="author", data=df, kind="count", aspect = 4)
25
  plt.xticks(rotation=90)