2016-12-08 8 views

答えて

1

... # same setup as before 
fig.subplots_adjust(wspace=2) 
plt.show() 

enter image description here

import matplotlib.pyplot as plt 

fig, (ax1, ax2) = plt.subplots(1, 2) 

ax1.plot([1,2,3], [1,2,3]) 
ax2.plot([1,2,3], [3,2,1]) 
plt.show() 

enter image description here

幅を増やすことがwspaceパラメータで行うことができます

関連する問題