/Premier-League-Data-Visualization

A python script that uses streamlit to create a webpage that uses data from the 2020 - 2021 premier league season and presents it in an easier way to digest and understand

Primary LanguagePython

** About **


**       **

** Process **

CMD:
	1. Create a new Anaconda environment to encapsulate all the libraries into one unified environment
	2. Create Anaconda env and install streamlit and plotly, pip install streamlit & pip install plotly
	3. Install Spyder, using pip install spyder, because it is easier to write regular python code

Header:
	Libraries:
		#import relevant libraries (visualization, dashboard, data manipulation)
		import pandas as pd 
		import numpy as np 
		import plotly.graph_objects as go
		import plotly.express as px
		import streamlit as st
		from datetime import datetime


*************