행위

Streamlit echart

DB CAFE

Dbcafe (토론 | 기여)님의 2024년 8월 22일 (목) 06:32 판 (새 문서: == Streamlit Echart == * pip install streamlit_echarts <source lang=python> from streamlit_echarts import st_echarts options = { "xAxis": { "type": "category", "d...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
thumb_up 추천메뉴 바로가기


Streamlit Echart[편집]

  • pip install streamlit_echarts
from streamlit_echarts import st_echarts

options = {
    "xAxis": {
        "type": "category",
        "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
    },
    "yAxis": {"type": "value"},
    "series": [
        {"data": [820, 932, 901, 934, 1290, 1330, 1320], "type": "line"}
    ],
}
st_echarts(options=options)