Hello,
I am using python 3,7
bokeh version 1.4.0
streamlit version 1,1,0
But i get streamlit has no attribute bokeh error.
Can you help me?
x=df_base['Week'].values.tolist()
y=df_base['Kümüle_Tutar'].values.tolist()
p= figure(
title= 'Envanter Tutar Syri',
x_axis_label= 'x',
y_axis_label='y')
p.line(x,y,line_width=2)
st.bokeh.chart(p,use_container_width=True)