Skip to content

Instantly share code, notes, and snippets.

@talaatmagdyx
Created December 25, 2024 00:49
Show Gist options
  • Select an option

  • Save talaatmagdyx/f504b85373a9a9991e1961c093e1faf0 to your computer and use it in GitHub Desktop.

Select an option

Save talaatmagdyx/f504b85373a9a9991e1961c093e1faf0 to your computer and use it in GitHub Desktop.
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