데이터시각화

작성일자 : 2024-09-21Ver 0.1.1대표 표현 방식matplotlib은 대표적으로 stateless API(Objected-based) 방식과 statefull API(state-based) 방식으로 사용할 수 있다.stateless 방법은 내가 지정한 figure, 내가 지정한 ax에 그림을 그리는 방법 (import matplotib)이고, stateful 방법은 현재의 figure, 현재의 ax에 그림을 그리는 방법 (import matplotlib.pyplot)이다. stateful 방법은 stateless 방법을 쉽게 사용하기 위한 방법이다. 이에 stateless 만큼 정교한 작업은 할 수 없다.figure그림을 그리기 전 액자의 모양과 크기를 정하는 것그림은 figure(액자)에 ..
작성일자 : 2024-09-20수정일자 : 2024-09-22Ver 0.1.3참고 사이트 matplotlib.pyplot — Matplotlib 3.9.2 documentationmatplotlib.pyplot matplotlib.pyplot is a state-based interface to matplotlib. It provides an implicit, MATLAB-like, way of plotting. It also opens figures on your screen, and acts as the figure GUI manager. pyplot is mainly intended for interactive plots amatplotlib.org 그리기# 라이브러리 불러오기import matpl..
작성일자 : 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-16Ver 0.1.1 Arc MarkArc Mark는 중심점과 각도 및 방사형 범위로 정의되는 원형 원호이다. Arc 표시는 일반적으로 Pie 및 Donut 차트와 같은 방사형 플롯에 사용된다.속성Arc 마크 정의에는 표준 마크 속성과 다음과 같은 특수 속성이 포함될 수 있다.속성유형설명radiusanyOf(number,ExprRef)For arc Mark, the primary (outer) radius in pixels.For text marks, polar coordinate radial offset, in pixels, of the text from the origin determined by the x and y properties.Default value : min(..
Unlimited Jun
'데이터시각화' 태그의 글 목록 (3 Page)