2024/09

작성일자 : 2024-09-23Ver 0.1.1참고 사이트 : wiki docspyplot 소개matplotlib.pyplot 모듈은 MATLAB과 비슷하게 명령어 스타일로 동작하는 함수의 모음이다.matplotlib.pyplot 모듈의 각각의 함수를 사용해서 간편하게 그래프를 만들고 변화를 줄 수 있다.예를 들어, 그래프 영역을 만들고, 몇 개의 선을 표현하고, 레이블로 꾸미는 등의 일을 할 수 있다.기본 그래프 그리기 예제1import matplotlib.pyplot as pltplt.plot([1,2,3,4])plt.show() pyplot.plot() 함수에 하나의 숫자 리스트를 입력함으로써 아래와 같은 그래프가 그려진다.plot() 함수는 리스트의 값들이 y 값들이라고 가정하고, x 값 [0, ..
작성일자 : 2024-09-22Ver 0.1.1 Error BandError Band는 면적별 요약 통계 세트를 사용하여 정량적 값의 오차 범위를 요약한다.Altair의 Error Band는 Raw 데이터를 집계하거나 집계된 데이터를 직접 시각화하는 데 사용할 수 있다.Error Band를 만들려면 mark_errorband를 사용합니다.속성A circle mark definition can contain any standard mark properties and the following special properties:속성유형설명extentErrorBarExtentThe extent of the band. Available options include:"ci": Extend the band to ..
작성일자 : 2024-09-21수정일자 : 2024-09-26Ver 0.1.2Matplotlib 해부도subplot() 이용 matplotlib.pyplot.subplot — Matplotlib 3.5.3 documentationThree integers (nrows, ncols, index). The subplot will take the index position on a grid with nrows rows and ncols columns. index starts at 1 in the upper left corner and increases to the right. index can also be a two-tuple specifying the (first, last) inmatplotlib.org..
작성일자 : 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(액자)에 ..
Unlimited Jun
'2024/09 글 목록 (3 Page)