일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- K 데이터 자격시험
- 검정수수료
- context manger1
- Seaborn
- 빅데이터 분석기사
- 응시료
- pythonML
- teen learn
- List Comprehension
- numpy
- separating data(데이터 분리하기)
- 시험 일정
- matplotlib
- 준비
- Today
- Total
목록matplotlib (2)
재원's 블로그
최초 작성일 : 2021-11-23 categories: Matplotlib 산점도 (Scatter plot)는 두 변수의 상관 관계를 직교 좌표계의 평면에 점으로 표현하는 그래프다. matplotlib.pyplot 모듈의 scatter() 함수를 이용하면 산점도를 그릴 수 있다. Keyword: plt.scatter(), scatter plot, 산점도 코드는 아래와 같다. import matplotlib.pyplot as plt import numpy as np np.random.seed(0) n = 50 x = np.random.rand(n) #NumPy의 random 모듈에 포함된 rand() 함수를 사용해서 # (0, 1) 범위의 난수를 각각 50개씩 생성했다. y = np.random.rand..
최초 작성일 : 2021-11-03 categories: Python 파이썬 데이터 시각화 들어가기 - matplotlib와 seaborn import matplotlib.pyplot as plt #matplotlib.pyplot 모듈의 plt 함수를 사용한다는 뜻. dates = [ '2021-01-01', '2021-01-02', '2021-01-03', '2021-01-04', '2021-01-05', '2021-01-06', '2021-01-07', '2021-01-08', '2021-01-09', '2021-01-10' ] min_temperature = [20.7, 17.9, 18.8, 14.6, 15.8, 15.8, 15.8, 17.4, 21.8, 20.0] max_temperature = ..