Skip to content

Instantly share code, notes, and snippets.

@ycui1
Created October 7, 2021 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ycui1/c71f910441fd6f15bea90d56a193f8b0 to your computer and use it in GitHub Desktop.
Save ycui1/c71f910441fd6f15bea90d56a193f8b0 to your computer and use it in GitHub Desktop.
import streamlit as st
import pandas as pd
st.title("My First Web App")
st.header("Titanic Dataset")
df = pd.read_csv("https://raw.githubusercontent.com/mwaskom/seaborn-data/master/titanic.csv")
st.write(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment