Created
December 25, 2024 00:49
-
-
Save talaatmagdyx/f504b85373a9a9991e1961c093e1faf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| import pandas as pd | |
| import numpy as np | |
| data = pd.DataFrame( | |
| np.random.randn(50, 3), | |
| columns=["X", "Y", "Z"] | |
| ) | |
| st.line_chart(data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment