import streamlit as st
st.markdown("""
<style>
section[data-testid="stSidebar"] {
top: 10%;
}
</style>""", unsafe_allow_html=True)
st.sidebar.title('Sidebar Title')
st.title('Main Title')
I want to add dtale view of dataframe df below Main Title. Please help me with a code snippet.
I tried following github link from discussion, but since I am new to streamlit, I couldn’t make much progress.