matplotlib ~ 그래프에 점 작성
3946 단어 파이썬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()
다음과 같이 점을 그릴 수있었습니다.
Reference
이 문제에 관하여(matplotlib ~ 그래프에 점 작성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hoshianaaa/items/b28e53d6eb3656c4940f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)