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 matplotlib.pyplot as plt | |
| url = "https://gist.githubusercontent.com/verttiwinter/4fae8d1bd7e0aa267624560e9da9ca29/raw/c67b82abf0f117cf795a65b70bc8807b8717040e/fifa_ranking_2022-10-06.csv" | |
| st.set_page_config(page_title="FIFA ranking", layout="wide") | |
| st.title("FIFA ranking 2022") | |
| df = pd.read_csv(url) |