whitphx's picture
whitphx HF Staff
Add comments referring to the original file URLs
ef2f056
raw
history blame contribute delete
242 Bytes
# Copied from https://github.com/PablocFonseca/streamlit-aggrid
from st_aggrid import AgGrid
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv')
AgGrid(df)