Spaces:
Runtime error
Runtime error
File size: 356 Bytes
6207b87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project : Python.
# @File : 997_streamlit_aggrid
# @Time : 2022/10/17 下午1:14
# @Author : yuanjie
# @WeChat : meutils
# @Software : PyCharm
# @Description :
from st_aggrid import AgGrid
import pandas as pd
df = pd.read_csv('./data/airline-safety.csv')
AgGrid(df) |