matplotlib로 일부를 확대한 그림 만들기
7517 단어 파이썬matplotlib
matplotlibで,一部を拡大した図を同じプロットに挿入できる
이런 녀석이 그려보고 싶었다.
아무것도없는 간단한 절차로,
subplot의 테두리를 준비해 주면 됩니다.
zoom.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.tick_params(which='both', direction='in', top=bool, right=bool, labelbottom=True)
ax1.set_xlim(0.0, 4.0)
ax1.set_xlabel("x")
ax1.set_ylim(0, 2)
ax1.set_ylabel("y")
# 関数の作成
x = np.arange(0.01, 4.0, 0.01)
y = x*x*np.sin(1.0/(x*x*x)) +0.4
ax1.plot(x, y, "-", color='red', lw=1)
# zoomするsubplotの位置
#axes([左からどのくらい離すか, 下からどのくらい離すか, 幅, 高さ])
sub_axes = plt.axes([.2, .6, .25, .25])
sub_axes.tick_params(which='both', direction='in', top=bool, right=bool, labelbottom=True)
sub_axes.tick_params(labelsize=7)
sub_axes.grid(which='major',color='gray',alpha=0.1,linestyle=':',linewidth=0.3)
sub_axes.set_xlim(0.0, 0.6)
sub_axes.set_xticks( [0, 0.2, 0.4, 0.6] )
sub_axes.set_ylim(0.0, 0.8)
# subplotを描く
sub_axes.plot(x, y)
plt.savefig("zoom.eps")
참고:
이미지의 일부를 확대하여 matplotlib의 동일한 플롯에 삽입하는 방법
Reference
이 문제에 관하여(matplotlib로 일부를 확대한 그림 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kumamupooh/items/6b7b05f5436fb1c36b72텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)