Spaces:
Sleeping
Sleeping
Update pages/market_rent_estimation.py
Browse files- pages/market_rent_estimation.py +13 -11
pages/market_rent_estimation.py
CHANGED
|
@@ -35,6 +35,19 @@ def main():
|
|
| 35 |
options=[x1, x2, x3],
|
| 36 |
value=x2)
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
st.markdown('<style>div[data-testid="stBlock"]{margin-top: 20px;}</style>', unsafe_allow_html=True)
|
| 39 |
|
| 40 |
chart_data = pd.DataFrame(np.random.randn(20, 2), columns=["col1", "col2"])
|
|
@@ -47,17 +60,6 @@ def main():
|
|
| 47 |
color='col4',
|
| 48 |
)
|
| 49 |
|
| 50 |
-
st.markdown('<style>div[data-testid="stBlock"]{margin-top: 20px;}</style>', unsafe_allow_html=True)
|
| 51 |
-
|
| 52 |
-
col1, col2 = st.columns([1, 1])
|
| 53 |
-
|
| 54 |
-
# Add the first button on the left side
|
| 55 |
-
with col1:
|
| 56 |
-
st.button("Left Button")
|
| 57 |
-
|
| 58 |
-
# Add the second button on the right side
|
| 59 |
-
with col2:
|
| 60 |
-
st.button("Right Button")
|
| 61 |
|
| 62 |
if __name__ == "__main__":
|
| 63 |
main()
|
|
|
|
| 35 |
options=[x1, x2, x3],
|
| 36 |
value=x2)
|
| 37 |
|
| 38 |
+
st.markdown('<style>div[data-testid="stBlock"]{margin-top: 20px;}</style>', unsafe_allow_html=True)
|
| 39 |
+
|
| 40 |
+
col1, col2 = st.columns([1, 1])
|
| 41 |
+
|
| 42 |
+
# Add the first button on the left side
|
| 43 |
+
with col1:
|
| 44 |
+
st.button("Left Button")
|
| 45 |
+
|
| 46 |
+
# Add the second button on the right side
|
| 47 |
+
with col2:
|
| 48 |
+
st.button("Right Button")
|
| 49 |
+
|
| 50 |
+
|
| 51 |
st.markdown('<style>div[data-testid="stBlock"]{margin-top: 20px;}</style>', unsafe_allow_html=True)
|
| 52 |
|
| 53 |
chart_data = pd.DataFrame(np.random.randn(20, 2), columns=["col1", "col2"])
|
|
|
|
| 60 |
color='col4',
|
| 61 |
)
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
|
| 64 |
if __name__ == "__main__":
|
| 65 |
main()
|