Spaces:
Sleeping
Sleeping
Commit ·
7b5faa8
1
Parent(s): 32d4be4
Update eda.py
Browse files
eda.py
CHANGED
|
@@ -10,12 +10,7 @@ def run():
|
|
| 10 |
st.title('Exploration Data Analysis Section')
|
| 11 |
# ============================= Showing Data ==========================
|
| 12 |
df = pd.read_csv('Emotion_classify_Data.csv')
|
| 13 |
-
horizontal_radio_css =
|
| 14 |
-
"""
|
| 15 |
-
<style>
|
| 16 |
-
div.row-widget.stRadio > div{flex-direction:row;}
|
| 17 |
-
</style>
|
| 18 |
-
"""
|
| 19 |
st.markdown(horizontal_radio_css, unsafe_allow_html=True)
|
| 20 |
data_show = st.radio("**Viewing Options**", ['Top 10 Entries', 'Bottom 10 Entries'])
|
| 21 |
if image_show == 'Top 10 Entries':
|
|
|
|
| 10 |
st.title('Exploration Data Analysis Section')
|
| 11 |
# ============================= Showing Data ==========================
|
| 12 |
df = pd.read_csv('Emotion_classify_Data.csv')
|
| 13 |
+
horizontal_radio_css = """<style>div.row-widget.stRadio > div{flex-direction:row;}</style>"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
st.markdown(horizontal_radio_css, unsafe_allow_html=True)
|
| 15 |
data_show = st.radio("**Viewing Options**", ['Top 10 Entries', 'Bottom 10 Entries'])
|
| 16 |
if image_show == 'Top 10 Entries':
|