Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 한빛미디어서평단
- 텐서플로
- 시각화
- Blog
- 리눅스
- 독후감
- matplotlib
- 파이썬
- MySQL
- 한빛미디어
- Linux
- 통계학
- 블로그
- 서평단
- 서평
- Ga
- 파이썬 시각화
- Tistory
- 월간결산
- Google Analytics
- 매틀랩
- MATLAB
- Pandas
- 딥러닝
- python visualization
- tensorflow
- Python
- Visualization
- 티스토리
Archives
- Today
- Total
목록date_range (1)
pbj0812의 코딩 일기
[PYTHON] stackplot 으로 Age Of Empires 그래프 그리기
0. 목표 - stackplot 으로 Age Of Empires 그래프 그리기 1. 실습 1) library 호출 import numpy as np import matplotlib.pyplot as plt import pandas as pd 2) 데이터 프레임 생성 df = pd.DataFrame({ 'A' : [np.random.randint(1, 10) for i in range(100)], 'B' : [np.random.randint(1, 10) for i in range(100)], 'C' : [np.random.randint(1, 10) for i in range(100)]}) 3) 인덱스를 시간으로 대체 df.index = pd.date_range('1/1/2000', periods=100, ..
ComputerLanguage_Program/PYTHON
2021. 7. 18. 19:09