행위

"Python streamlit dashboard"의 두 판 사이의 차이

DB CAFE

(Streamlit 샘플)
1번째 줄: 1번째 줄:
 
= 파이썬 Streamlit 대시보드 개발 =
 
= 파이썬 Streamlit 대시보드 개발 =
 
== 설치 ==
 
== 설치 ==
 +
https://blog.zarathu.com/posts/2023-02-01-streamlit/
 +
 
== 실행 방법 ==
 
== 실행 방법 ==
 
<source lang=python>
 
<source lang=python>

2024년 7월 11일 (목) 18:53 판

thumb_up 추천메뉴 바로가기


1 파이썬 Streamlit 대시보드 개발[편집]

1.2 실행 방법[편집]

streamlit run test.py

1.3 Streamlit 샘플[편집]

  • 샘플 소스
import streamlit as st
st.title('Hello Streamlit')
  • 실행
streamlit run app.py

1.4 문자열 관련[편집]

import streamlit as st

# 타이틀
st.title('this is title')
# 헤더 
st.header('this is header')
# 서브헤더
st.subheader('this is subheader')