Skip to content

Instantly share code, notes, and snippets.

@AbhishekPatnaik
Last active June 26, 2020 15:49
Show Gist options
  • Select an option

  • Save AbhishekPatnaik/4d823da9b10d5c67db82be42f94f1b32 to your computer and use it in GitHub Desktop.

Select an option

Save AbhishekPatnaik/4d823da9b10d5c67db82be42f94f1b32 to your computer and use it in GitHub Desktop.
import streamlit as st
import pandas as pd
import numpy as np
st.title('Our First Web-App with streamlit')
st.text('Analyze random data')
st.write("Here's our first attempt at using data to create a table:")
st.write(pd.DataFrame({
'first column': [1, 2, 3, 4],
'second column': [10, 20, 30, 40]
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment