Prevent from creating dataframe

Hello I have problem:

I want my app to just print some charts, based on some dataframe (named ā€œbig_boardā€), after clicking button (named ā€œdraw_charts_buttonā€).

draw_charts_button = st.sidebar.button("draw charts")

if draw_charts_button:

      big_board = load_big_board()

and then there is some code from printing charts. But at the top of the page iā€™m getting big_board dataframe widget, which I donā€™t need. What should I do to get rid of it?