본문 바로가기
Python/Streamlit

[Python] Streamlit 웹 화면에 DataFrame 보여주기

by coding_su 2022. 12. 12.

📝Python Streamlit 웹 화면에 DataFrame 보여주기

# 판다스의 데이터프레임을 웹화면으로 보여주는 방법
import streamlit as st
import pandas as pd

def main() :
    st.title('아이리스 꽃 데이터')
    df = pd.read_csv('streamlit_data/iris.csv')
    st.dataframe(df)

    species = df['species'].unique()
    st.text('아이리스 꽃은 ' + species + '으로 되어있다.')

if __name__ == '__main__' :
    main()

 

실행 결과 ↓

댓글