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 | 31 |
Tags
- SQL
- 서평단
- 텐서플로
- 블로그
- Blog
- Ga
- Visualization
- 딥러닝
- 월간결산
- 독후감
- 매틀랩
- Google Analytics
- 통계학
- MATLAB
- 파이썬 시각화
- 파이썬
- 한빛미디어서평단
- 시각화
- 서평
- Tistory
- python visualization
- matplotlib
- 한빛미디어
- 리눅스
- Python
- 티스토리
- tensorflow
- Linux
- MySQL
- Pandas
Archives
- Today
- Total
목록PyScript (1)
pbj0812의 코딩 일기
[PYTHON] PyScript 로 그림 그리기
0. 작업 준비 - 파일 확장자는 html 로 한다. 1. 코드 작성 - link, script 는 복붙하면 된다. - py-config 에는 불러올 라이브러리를 적는다. - py-script 에 본문을 적는다. - 마지막에 쓴 display 함수를 통해 그릴 곳을 지정한다. - id = graph-area 확인 packages = ["matplotlib", "numpy"] import numpy as np import matplotlib.pyplot as plt from matplotlib.patches import Ellipse, Polygon x = -1 y = abs(x) * np.tan(1/3 * np.pi) y_1 = 1/3 * y y_2 = 2/3 * y data = [1, 1, 2] n =..
ComputerLanguage_Program/PYTHON
2023. 2. 6. 01:15