Skip to content

Commit 7ba1072

Browse files
Merge pull request prayanatrisna#2 from prayanatrisna/initial_branch
add sidebar
2 parents 18ad0ff + 5a5e0fc commit 7ba1072

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hello.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
st.write("")
1313
col1, col2 = st.columns([2,6])
1414

15-
with col1:
15+
with st.sidebar:
1616
st.markdown("**Pilih Spesies**")
1717
setosa_on = st.checkbox('Iris Setosa')
1818
versicolor_on = st.checkbox('Iris Versicolor')
@@ -33,8 +33,8 @@
3333
else:
3434
used_data = data
3535

36-
with col2:
37-
st.dataframe(used_data, use_container_width=True)
36+
# with col2:
37+
st.dataframe(used_data, use_container_width=True)
3838

3939
col3, col4 = st.columns(2)
4040

0 commit comments

Comments
 (0)