f64 commited on
Commit ·
c3a8074
1
Parent(s): 13d9703
- pages/7_итоги.py +7 -1
- requirements.txt +1 -0
pages/7_итоги.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import streamlit as st, pandas as pd, numpy as np
|
|
|
|
| 2 |
st.sidebar.markdown("# итоги ⚜️")
|
| 3 |
# remove decoration and popup menu button at top
|
| 4 |
st.markdown("<style> header[data-testid='stHeader'] { display:none }", unsafe_allow_html=True)
|
|
@@ -6,4 +7,9 @@ st.markdown("<style> header[data-testid='stHeader'] { display:none }", unsafe_al
|
|
| 6 |
col1, col2, col3 = st.columns(3)
|
| 7 |
col1.metric("Temperature", "70 °F", "1.2 °F")
|
| 8 |
col2.metric("Wind", "9 mph", "-8%")
|
| 9 |
-
col3.metric("Humidity", "86%", "4%")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st, pandas as pd, numpy as np
|
| 2 |
+
|
| 3 |
st.sidebar.markdown("# итоги ⚜️")
|
| 4 |
# remove decoration and popup menu button at top
|
| 5 |
st.markdown("<style> header[data-testid='stHeader'] { display:none }", unsafe_allow_html=True)
|
|
|
|
| 7 |
col1, col2, col3 = st.columns(3)
|
| 8 |
col1.metric("Temperature", "70 °F", "1.2 °F")
|
| 9 |
col2.metric("Wind", "9 mph", "-8%")
|
| 10 |
+
col3.metric("Humidity", "86%", "4%")
|
| 11 |
+
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
dataset = load_dataset("f64k/gaziev")
|
| 14 |
+
|
| 15 |
+
dataset
|
requirements.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
streamlit
|
|
|
|
| 2 |
plotly
|
| 3 |
pandas
|
| 4 |
numpy
|
|
|
|
| 1 |
streamlit
|
| 2 |
+
datasets
|
| 3 |
plotly
|
| 4 |
pandas
|
| 5 |
numpy
|