반응형
파이썬 자동이미지
이미지 자동 생성되는 코드를 만들어봅니다
파이썬 공부를 하면서 코딩을 하는게 재밌어지는 중입니다.
많은부분이 아직 진행중이라 어렵지만 천천히 해볼려구 합니다.
코딩 만들기
import matplotlib.pyplot as plt
import numpy as np
# Generate data for the plot
x = np.linspace(0, 10, 100)
y = np.sin(x)
# Plot the data
plt.plot(x, y)
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.title('Sin(x) Plot')
# Add text to the plot
plt.text(5, 0.5, 'Sin(x)', fontsize=12)
# Save the plot
plt.savefig('sin1_plot.png')
반응형
'IT News' 카테고리의 다른 글
openpose editor 설치 및 사용방 (0) | 2023.03.22 |
---|---|
pip pycurl설치 (0) | 2023.03.21 |
체크디스크(CHKDSK), 디스크 검사를 수동으로 실행하는 방법 (0) | 2023.01.19 |
애드센스 광고넣는 방법 (0) | 2023.01.16 |
마우스 리씨버분실시 대체 하는법(로지텍) (0) | 2023.01.12 |
댓글