Last active
June 26, 2020 15:49
-
-
Save AbhishekPatnaik/4d823da9b10d5c67db82be42f94f1b32 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 | |
| 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