작성일자 : 2024-09-15Ver 0.1.1Reference : API-Reference실행시 streamlit run app.pyimport streamlit as stst.set_page_config( page_title = "포켓몬 도감" #페이지 탭 이름 ,page_icon = "./tutorial/images/monsterball.png" # 페이지 아이콘)st.title("streamlit 포켓몬 도감")st.markdown("**포켓몬**을 하나씩 추가해서 도감을 채워보세요")# 포켓몬 속성 Dictionarytype_emoji_dict = { "노말": "⚪", "격투": "✊", "비행": "🕊", "독": "☠️", "땅": "🌋", "..
파이썬
작성일자 : 2024-09-19Ver 0.1.1 BarBar(막대)는 막대 차트, 스택 막대 차트, 시계열과 같은 많은 시각화에서 유용하다. 속성속성유형설명widthanyOf(number, ExprRef, RelativeBandSize)Width of the marks. One of:- A number representing a fixed pixel width. - A relative band size definition. For example, {band: 0.5} represents half of the band.heightanyOf(number, ExprRef, RelativeBandSize)Height of the marks. One of:- A number representing a fixed..
작성일자 : 2024-09-17Ver 0.1.1 AreaArea는 단일 면적 모양으로 다중 데이터 요소를 나타낸다. 면적 표시는 종종 단일 면적 또는 stack 면적을 사용하여 시간 경과에 따른 변화를 표시하는 데 사용된다.속성속성유형설명alignanyOf(Align,ExprRef)The horizontal alignment of the text or ranged marks (area, bar, image, rect, rule). One of "left", "right", "center".Note: Expression reference is not supported for range marks.baselineanyOf(TextBaseline, ExprRef)For text marks, the verti..
작성일자 : 2024-05-09Ver 0.1.1 시간 구간별 선수 활동량 지표 집계 및 시각화¶In [1]: import os# directory 변경new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics'os.chdir(new_dir)import numpy as npimport pandas as pdfrom tqdm import tqdmimport matplotlib.pyplot as pltfrom src.plot_utils import draw_pitch (1) 가공 데이터 불러오기¶In [3]: match_id = 1# file = f'data_metrica/Sample_Game_{match_id}..