메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
그림에 선 추가 #
축이 없는 그림에 선을 추가합니다.
import matplotlib.pyplot as plt
import matplotlib.lines as lines
fig = plt.figure()
fig.add_artist(lines.Line2D([0, 1], [0, 1]))
fig.add_artist(lines.Line2D([0, 1], [1, 0]))
plt.show()
참조
다음 함수, 메서드, 클래스 및 모듈의 사용이 이 예제에 표시됩니다.