#pip install matplotlib import matplotlib.pyplot as plt #draw scatter plot plt.scatter(data['a'], data['b']) plt.title("scatter plot") st.pyplot()