Made by Daniel Lopez
official website : https://streamlit.io/
Streamlit is an open-source app framework in python language. It helps us create beautiful web apps for data science and machine learning in a little time. It is compatible with major python libraries such as scikit-learn, keras, PyTorch, latex, numpy, pandas, matplotlib, etc.
This is a sample superstore dataset, a kind of a simulation where you perform extensive data analysis to deliver insights on how the company can increase its profits while minimizing the losses.
python -m venv venv
venv\Scripts\activate
venv\Scripts\deactivate
pip install -r requirements.txt
streamlit run app.py
import streamlit as st
import seaborn as sns
st.header("This is simple streamlit application")
st.text("step by step web app learning from creative soft")
df=sns.load_dataset('iris')
st.write(df.head(10))

