matplotlib ~ 그래프에 점 작성

3946 단어 파이썬matplotlib
matplotlib는 파이썬으로 만든 계산을 그릴 때 유용합니다.
이번에는 간단한 점을 그래프에 그립니다.

그래프 만들기

그래프 만들기
import matplotlib.pyplot as plt

fig = plt.figure()
ax1 = fig.add_subplot(111)

plt.xlim(-300,300)
plt.ylim(-200,200)

plt.xlabel('x')
plt.ylabel('y')

plt.grid()

plt.show()


모든 범위의 그래프를 그릴 수있었습니다.


그래프에 점을 그릴 때는 plt.plot(100,50,marker='.') 와 같이 추가

그래프에 점 추가
import matplotlib.pyplot as plt

fig = plt.figure()
ax1 = fig.add_subplot(111)

plt.xlim(-300,300)
plt.ylim(-200,200)

plt.xlabel('x')
plt.ylabel('y')

plt.grid()

plt.plot(100,50,marker='.') ##追加

plt.show()

다음과 같이 점을 그릴 수있었습니다.

좋은 웹페이지 즐겨찾기