Nikithasagar/randomnumbergraph
0
1# Importing the necessary libraries2import streamlit as st3import pandas as pd4import numpy as np5 6# Title of the app7st.title("My First Streamlit App")8 9# Adding some text10st.write("This is a simple example of a Streamlit app.")11 12# Generating some random data for the line chart13data = pd.DataFrame(14 np.random.randn(100, 2),15 columns=['Column 1', 'Column 2']16)17 18# Displaying the line chart19st.line_chart(data)20 