Spaces:
Runtime error
Runtime error
Commit
·
1c9fb4e
1
Parent(s):
6a544e7
Update app.py
Browse files
app.py
CHANGED
|
@@ -125,7 +125,10 @@ def run():
|
|
| 125 |
#print(text)
|
| 126 |
st.table(text)
|
| 127 |
#text.plot.bar(y='probabilidad')
|
| 128 |
-
st.
|
|
|
|
|
|
|
|
|
|
| 129 |
elif (usuario):
|
| 130 |
tweets = api.user_timeline(screen_name = search_words,count=number_of_tweets)
|
| 131 |
tweet_list = [i.text for i in tweets]
|
|
|
|
| 125 |
#print(text)
|
| 126 |
st.table(text)
|
| 127 |
#text.plot.bar(y='probabilidad')
|
| 128 |
+
#st.area_chart(text)
|
| 129 |
+
text.plot(kind='pie')
|
| 130 |
+
st.pyplot()
|
| 131 |
+
|
| 132 |
elif (usuario):
|
| 133 |
tweets = api.user_timeline(screen_name = search_words,count=number_of_tweets)
|
| 134 |
tweet_list = [i.text for i in tweets]
|